Shopping In MUMBAI

Are you searching for Discounts, offers, sale in Mumbai ? You are in the right place. MUMBAI, a shopping haven, has no dearth of great discounts and sales. This blog features the best MUMBAI shopping offers, sale, discounts and deals and bargains CURRENTLY GOING on in Mumbai plus a few free things thrown in on top. Don't wait for it because once they are gone, they are gone. Hurry!..By clicking the "Like" button you will receive a daily update of discounts, sale, offers going on in Mumbai. LIKE IT.... SHARE IT...njoY.

Wednesday, December 31, 2008

C Program to compute the sin series

C Program to compute the sin series

#include
#include
#include
int fact(int no)
{
int j,f=1;
for(j=1;j<=no;j++)
{
f=f*j;
}
return f;
}
void main()
{
int x,n,count=0,i,j,f;
float sin=0,p;
clrscr();
printf("\nEnter value for x: ");
scanf("%d",&x);
printf("\nEnter value for n: ");
scanf("%d",&n);
i=1;
while(i<=n)
{
count++;
p=pow(x,i);
f=fact(i);
if(count%2!=0)
sin=sin+p/f;
else
sin=sin-p/f;
i=i+2;
}
printf("\nValue of sin(%d): %0.3f",x,sin);
getch();
}

***************OUTPUT*****************

Enter value for x: 1

Enter value for n: 7

Value of sin(1): 0.841

C Program to compute the sin seriesSocialTwist Tell-a-Friend

0 comments:

SUPPORT THIS BLOG