home *** CD-ROM | disk | FTP | other *** search
- /* General form test program for scientific functions */
-
- /* Routine Tested: NORNG */
-
- main()
-
- {
- int *fp,i;
- float p,r;
-
- r = 0.49;
-
- *fp=fopen("PRN:","w"); /* open the printer */
-
- fprintf(*fp,"Test Results from NORNG\n");
- printf("Test Results from NORNG\n\n");
-
-
- for(i = 1; i <= 10; i++)
- {
-
- norng(&r,&p);
-
- fprintf(*fp," %15.10f \n",p);
- printf( " %15.10f \n",p);
- }
- }
-