home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C Programming Starter Kit 2.0
/
SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso
/
tyc
/
list6_3.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-10-16
|
280 b
|
19 lines
/* Demonstrates a simple while statement */
#include <stdio.h>
int count;
main()
{
/* Print the numbers 1 through 20 */
count = 1;
while (count <= 20)
{
printf("\n%d", count);
count++;
}
}