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

  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5. double x;
  6.  
  7.     printf("look at the fourth, fifth and sixth columns\n");
  8.     printf("%%e\t\t %%f\t\t %%g\t %%.g\t %%.1g\t %%.2g\t %%.3g\n\n");
  9.     for ( x = 1e-6; x < 1e+4; x *= 10.0 )
  10.         printf("%e\t %f\t %g\t %.g\t %.1g\t %.2g\t %.3g\n",
  11.             x,x,x,x,x,x,x);
  12. }
  13.