home *** CD-ROM | disk | FTP | other *** search
/ Falcon 030 Power 2 / F030_POWER2.iso / ST_STE / MAGS / ICTARI08.ARJ / ictari.08 / C / PROGRAMS / CGM.C < prev    next >
Text File  |  1986-11-11  |  110b  |  12 lines

  1. main()
  2.  
  3. {
  4. int a,b,c;
  5. c=12;
  6.  
  7. for (a=1;a<=c;a++)
  8.     {    b=a*a;
  9.     printf ("%d squared is %d\n",a,b);
  10.     }
  11. }
  12. ə