home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_06 / 9n06010b < prev    next >
Text File  |  1991-04-22  |  341b  |  16 lines

  1.  
  2. #include <stdio.h>
  3. .....
  4.     char buf[100];
  5.  
  6.     printf("You ordered %s sheets,",
  7.         _Fmtval(buf, (double)nitems, FV_INTEGER);
  8.     printf(" each %s square cm.\n",
  9.         _Fmtval(buf, size, 3);
  10.     printf("Please remit %s to New York office,\n",
  11.         _Fmtval(buf, cost, FV_INT_CUR));
  12.     printf("(that's %s).\n",
  13.         _Fmtval(buf, cost, FV_LCL_CUR));
  14.  
  15.  
  16.