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

  1. /* FOR3.C: Demonstrate similarity of for and while. 
  2. */
  3.  
  4. #include <stdio.h>
  5.  
  6. main()
  7. {
  8.    int count;
  9.  
  10.    for( count = 0; count < 10; count++ )
  11.       printf( "count = %d\n", count );
  12.  
  13.    count = 0;
  14.    while( count < 10 )
  15.    {
  16.       printf( "count = %d\n", count );
  17.       count++;
  18.    }
  19.  
  20. }
  21.