home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
c
/
other
/
learn
/
for3.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
|
306 b
|
21 lines
/* FOR3.C: Demonstrate similarity of for and while.
*/
#include <stdio.h>
main()
{
int count;
for( count = 0; count < 10; count++ )
printf( "count = %d\n", count );
count = 0;
while( count < 10 )
{
printf( "count = %d\n", count );
count++;
}
}