home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / datafiles / text / c_tutor / intarray.c < prev    next >
C/C++ Source or Header  |  1995-02-27  |  229b  |  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.