LANGRANGE’S INTERPOLATION PROGRAM IN C
LANGRANGE’S INTERPOLATION PROGRAM IN C #include<stdio.h>#include<conio.h>#include<math.h>void main(){ int n,i,j; float x[4],y[4],prod,sum=0,X; printf(“enter value of n”); scan(“%d”,&n); printf(“enter value of x”);
Read more