home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_01_06 / 1n06009a < prev    next >
Text File  |  1990-09-26  |  297b  |  22 lines

  1.  
  2. #include "stdio.h"
  3.  
  4. int main()
  5.     {
  6.     int a
  7.     int b
  8.     int c;
  9.     
  10.     for (a = 0; a < 10; ++a)
  11.         {
  12.         for (b = 0; b < 10; ++b)
  13.             {
  14.            c = a + b;
  15.             printf("%i + %i = %i\n",a,b,c);
  16.             }
  17.         }
  18.     
  19.     return 0;
  20.     }
  21.  
  22.