home *** CD-ROM | disk | FTP | other *** search
- /* General form test program for scientific functions */
-
- /* Routine Tested: NACPLY */
-
- main()
-
- {
- int *fp,i,n;
- float a[7],b[7],c[7];
-
- n = 6;
-
- nacply(n,a,b,c);
-
- *fp=fopen("PRN:","w"); /* open the printer */
-
- fprintf(*fp,"Test Results from NACPLY\n");
- printf("Test Results from NACPLY\n\n");
-
- for(i = 0; i <= n; i++)
- {
- fprintf(*fp," %15.10f \n",a[i]);
- printf( " %15.10f \n",a[i]);
- }
- }
-