home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_06 / 9n06010b < prev    next >
Encoding:
Text File  |  1995-11-01  |  341 b   |  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.