home *** CD-ROM | disk | FTP | other *** search
- /* General form test program for scientific functions */
-
- /* Routine Tested: STNGBI */
-
- main()
-
- {
- float p,df,cf;
- int *fp,i,kk;
-
- *fp=fopen("PRN:","w"); /* open the printer */
- fprintf(*fp,"Test Results from STNGBI\n\n");
- printf("Test Results from STNGBI\n\n");
-
- i = 30;
- p = .8;
- kk = 6;
-
- stngbi(i,kk,p,&df,&cf);
-
- fprintf(*fp,"DF = %15.7f CF = %15.7f\n",df,cf);
- printf("DF = %15.7f CF = %15.7f\n",df,cf);
-
- }