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 >
C/C++ Source or Header  |  2002-04-07  |  191b  |  15 lines

  1. #include <stdio.h>
  2.  
  3. int x, y;
  4.  
  5. int main( void )
  6. {
  7.    for ( x = 0; x < 10; x++, printf( "\n" ) )
  8.        for ( y = 0; y < 10; y++ )
  9.            printf( "%c", 1 );
  10.  
  11.   return 0;
  12. }
  13.  
  14.  
  15.