home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sams Teach Yourself C in 21 Days (6th Edition)
/
STYC216E.ISO
/
mac
/
Examples
/
Day01
/
Ex01-06.c
< prev
next >
Wrap
C/C++ Source or Header
|
2002-04-07
|
191b
|
15 lines
#include <stdio.h>
int x, y;
int main( void )
{
for ( x = 0; x < 10; x++, printf( "\n" ) )
for ( y = 0; y < 10; y++ )
printf( "%c", 1 );
return 0;
}