home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / c / other / learn / badsemi1.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-07  |  264 b   |  15 lines

  1. /* BADSEMI1.C: Misplaced semicolon. */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7.    int count;
  8.    for( count = 0; count < 500; count++ )
  9.       ; /* Null statement */
  10.    {
  11.       printf( "count = %d\n", count );
  12.       printf( "And the beat goes on...\n" );
  13.    }
  14. }
  15.