Technicalsymposium.com-Free Email Alerts


Enter Your Email :

Important Note:Login & Check Your Email Inbox and Activate Confirmation Link

Subscribe & Get All Fresher Jobs Information & Study Materials PDF and Projects- Free Download

C Programming Books PDF


C Aptitude Question Papers


Datastructure Programming in C



C Programming & Tech Interview Materials PDF- Free Download

C Program for sine series.

#define ACC 0.000001

#define PI 3.14

void main()

{

int x,i;

float x1,x2,sine=0,term;

clrscr();

printf("Enter the X value:");

scanf("%d",&x);

x1=(x*PI)/180;

x2=x1*x1;

term=x1;

sine=term;

for(i=3;fabs(term)>ACC;i=i+2)

{

term = (x2*(-term))/(i*(i-1));

sine = sine+term;

}

printf("\n%f",sine);

getch();

}

Download All C Programming & Study Materials PDF