home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 258_01 / intarray.c < prev    next >
Text File  |  1988-03-30  |  384b  |  14 lines

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