home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Unsorted BBS Collection
/
thegreatunsorted.tar
/
thegreatunsorted
/
programming
/
misc_programming
/
MSC
/
CFLTTST.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-06-28
|
297 b
|
14 lines
void cflttst(x,y)
double far *x, *y;
{
printf("> Beginning of cflttst.\n");
printf("> Values passed from msctest:\n");
printf("> x (1.23456) = %g\n", *x);
printf("> y (9.87654) = %g\n", *y);
*x = 8.76543;
*y = 2.34567;
printf("> End of cflttst.\n");
}