home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sams Teach Yourself C in 21 Days (6th Edition)
/
STYC216E.ISO
/
mac
/
Examples
/
Day02
/
ex02-04.c
< prev
next >
Wrap
C/C++ Source or Header
|
2002-04-07
|
185b
|
15 lines
/* ex03-04.c */
#include <stdio.h>
int main(void)
{
int ctr;
for( ctr = 65; ctr < 91; ctr++ )
printf("%c", ctr );
return 0;
}
/* end of program */