home *** CD-ROM | disk | FTP | other *** search
/ The Unsorted BBS Collection / thegreatunsorted.tar / thegreatunsorted / programming / misc_programming / MSC / CFLTTST.C < prev    next >
Encoding:
Text File  |  1990-06-28  |  297 b   |  14 lines

  1. void cflttst(x,y)
  2.   double far *x, *y;
  3. {
  4.   printf(">  Beginning of cflttst.\n");
  5.   printf(">    Values passed from msctest:\n");
  6.   printf(">      x (1.23456) = %g\n", *x);
  7.   printf(">      y (9.87654) = %g\n", *y);
  8.  
  9.   *x = 8.76543;
  10.   *y = 2.34567;
  11.  
  12.   printf(">  End of cflttst.\n");
  13. }
  14.