home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / OTHERUTI / TCPP10-7.ZIP / EXAMPLES.ZIP / INTRO21.C < prev    next >
Text File  |  1990-09-26  |  245b  |  17 lines

  1. /* INTRO21.C--Example from Chapter 4 of Getting Started */
  2.  
  3. #include <stdio.h>
  4.  
  5. int main()
  6. {
  7.    int num = 0;
  8.    while (num++ <= 10)
  9.    {
  10.       if (num % 2 != 0)
  11.          continue;
  12.       printf("%d\n", num);
  13.    }
  14.  
  15.    return 0;
  16. }
  17.