home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / C-SSP.ARJ / PODTF.TST < prev    next >
Encoding:
Text File  |  1984-09-01  |  337 b   |  22 lines

  1.         /* General form test program for scientific functions */
  2.  
  3.         /* Routine Tested:  PODTF */
  4.  
  5.         main()
  6.  
  7.     {
  8.         int l,m;
  9.         float y;
  10.  
  11.         l = 3;
  12.         m = 3;
  13.  
  14.         podtf(l,m,&y);
  15.  
  16.          printf("Test Results from PODTF\n\n");
  17.  
  18.          printf(   "    %15.10f  \n",y);
  19.  
  20.      }
  21.  
  22.