C Program to Find the Sum of Cos Series
This C program is to find the sum of cos series given x and n #include main() { int i,n,x; float t,s; printf(“enter the value of x,n n”); scanf(“%d%d”,&x,&n); t=1; s=1; for(i=1;i
This C program is to find the sum of cos series given x and n #include main() { int i,n,x; float t,s; printf(“enter the value of x,n n”); scanf(“%d%d”,&x,&n); t=1; s=1; for(i=1;i
Recent Comments