home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / cprog / c_tutor.lha / C_Tutor / INTARRAY.C < prev    next >
Encoding:
C/C++ Source or Header  |  1985-12-31  |  229 b   |  13 lines

  1. main()
  2. {
  3. int values[12];
  4. int index;
  5.  
  6.    for (index = 0;index < 12;index++)  
  7.       values[index] = 2 * (index + 4);
  8.  
  9.    for (index = 0;index < 12;index++)
  10.       printf("The value at index = %2d is %3d\n",index,values[index]);
  11.  
  12. }
  13.