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

  1. /* CONT1.C: Demonstrate alternative to continue. */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7.    int count;
  8.    for( count = 0; count < 10; count++ )
  9.    {
  10.       if( count < 4 )
  11.      printf( "count = %d\n", count );
  12.    }
  13.    printf( "Done!\n" );
  14. }
  15.