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 finding COS THETA Value

#define ACC 0.0001

#define PI 3.14

void main()

{

int x,i;

float x1,x2,cosz=0,term;

clrscr(); printf("Enter the X value:"); scanf("%d",&x);

x1=(x*PI)/180;

// printf("%f",cos(x1));

x2=x1*x1;

term=1;

cosz=term;

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

{

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

cosz = cosz+term;

}

printf("\nNew Value%f",cosz);

getch();

}

Download All C Programming & Study Materials PDF