/* Program to implement GAUSS' FORWARD INTERPOLATION FORMULA. --------------------------------- */ #include<stdio.h> #include<conio.h> #include<math.h> #include<process.h> #include<conio.h> void main() { int n; // no. of terms. int i,j; // Loop variables float ax[10]; // 'X' array limit 9 float ay[10]; // 'Y' array limit 9 float x; // User Query for what value of X float nr,dr; float y=0; // Calculated value for coressponding X. float h; ...
Comments
Post a Comment