home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
C-SSP.ARJ
/
PODTF.TST
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1984-09-01
|
337 b
|
22 lines
/* General form test program for scientific functions */
/* Routine Tested: PODTF */
main()
{
int l,m;
float y;
l = 3;
m = 3;
podtf(l,m,&y);
printf("Test Results from PODTF\n\n");
printf( " %15.10f \n",y);
}