home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / datafiles / text / c_tutor / firstex.c < prev    next >
C/C++ Source or Header  |  1995-02-27  |  102b  |  8 lines

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