home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 253_01 / firstex.c < prev    next >
C/C++ Source or Header  |  1990-02-14  |  119b  |  8 lines

  1. main()
  2. {
  3. int index;
  4.  
  5.    for (index = 0;index < 7;index = index + 1)
  6.       printf("First example program.\n");
  7. }
  8.