home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day12 / Ex12_06.c < prev    next >
C/C++ Source or Header  |  2002-05-04  |  501b  |  29 lines

  1. #include <stdio.h>
  2.  
  3. void a_sample_function( );
  4. int main( void )
  5. {
  6.     a_sample_function();
  7.     return 0;
  8. }
  9.  
  10. void a_sample_function( void )
  11. {
  12.     int ctr1;
  13.  
  14.     for ( ctr1 = 0; ctr1 < 25; ctr1++ )
  15.         printf( "*" );
  16.  
  17.     puts( "\nThis is a sample function" );
  18.     {
  19.         char star = '*';
  20.         int ctr2;     /* fix */
  21.         puts( "\nIt has a problem\n" );
  22.         for ( ctr2 = 0; ctr2 < 25; ctr2++ )
  23.         {
  24.             printf( "%c", star);
  25.         }
  26.      }
  27. }
  28.  
  29.