home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hall of Fame
/
HallofFameCDROM.cdr
/
open
/
tur-c-tu.lzh
/
SOURCE.ZIP
/
WHILE.C
< prev
next >
Wrap
C/C++ Source or Header
|
1988-02-01
|
266b
|
14 lines
/* Chapter 3 - Program 1 */
/* This is an example of a "while" loop */
main()
{
int count;
count = 0;
while (count < 6) {
printf("The value of count is %d\n",count);
count = count + 1;
}
}