home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
OTHERUTI
/
TCPP10-7.ZIP
/
EXAMPLES.ZIP
/
INTRO21.C
< prev
next >
Wrap
Text File
|
1990-09-26
|
245b
|
17 lines
/* INTRO21.C--Example from Chapter 4 of Getting Started */
#include <stdio.h>
int main()
{
int num = 0;
while (num++ <= 10)
{
if (num % 2 != 0)
continue;
printf("%d\n", num);
}
return 0;
}