home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / ctutor2.zip / ANSWERS / CH07_2.C < prev    next >
Text File  |  1989-11-10  |  755b  |  34 lines

  1. main()
  2. {
  3. int index, array1[10], array2[10], arrays[10];
  4.  
  5.    for(index = 0;index < 10;index = index + 1) {
  6.       array1[index] = 2 + 2 * index;
  7.       array2[index] = 10 * (index + 1);
  8.    }
  9.  
  10.    for(index = 0;index < 10;index = index + 1)
  11.       arrays[index] = array1[index] + array2[index];
  12.  
  13.    for(index = 0;index < 10;index = index + 1)
  14.       printf("%4d %4d + %4d = %4d\n",(index + 1), array1[index],
  15.                array2[index], arrays[index]);
  16. }
  17.  
  18.  
  19.  
  20. /* Result of execution
  21.  
  22.    1    2 +   10 =   12
  23.    2    4 +   20 =   24
  24.    3    6 +   30 =   36
  25.    4    8 +   40 =   48
  26.    5   10 +   50 =   60
  27.    6   12 +   60 =   72
  28.    7   14 +   70 =   84
  29.    8   16 +   80 =   96
  30.    9   18 +   90 =  108
  31.   10   20 +  100 =  120
  32.  
  33. */
  34.