home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / qc_prog / chap03 / fields.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-04-06  |  264 b   |  13 lines

  1. /* fields.c -- shows the same number with different */
  2. /*             field widths and number of decimals  */
  3.  
  4. main()
  5. {
  6.     float f = 123.4560;
  7.  
  8.     printf("%12.6f\n", f);
  9.     printf("%8.4f\n", f);
  10.     printf("%8.3f\n", f);
  11.     printf("%8.2f\n", f);
  12. }
  13.