home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_07 / MARK_WC1.LZH / SRC / SQUARE.C < prev    next >
C/C++ Source or Header  |  1988-04-27  |  156b  |  11 lines

  1. /*
  2.  * print out the integers from 1 to 10 along with their squares.
  3.  */
  4. main()
  5. {
  6.     int i;
  7.  
  8.     for (i=1; i<11; i++)
  9.         printf("%2d\t%4d\n", i, i*i);
  10. }
  11.