home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 334_02 / printf.c < prev    next >
Text File  |  1991-02-05  |  129b  |  8 lines

  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5.     printf("%g %g %g %g %g %g %g\n",
  6.          2., 20., 200., 2000., 20000., 200000., 2000000.);
  7. }
  8.