home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
c
/
other
/
learn
/
cont1.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1988-10-07
|
244 b
|
15 lines
/* CONT1.C: Demonstrate alternative to continue. */
#include <stdio.h>
main()
{
int count;
for( count = 0; count < 10; count++ )
{
if( count < 4 )
printf( "count = %d\n", count );
}
printf( "Done!\n" );
}