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

  1. /* This is an example of a for loop */
  2.  
  3. main()
  4. {
  5. int index;
  6.  
  7.    for(index = 0;index < 6;index = index + 1)
  8.      printf("The value of the index is %d\n",index);
  9. }
  10.