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 series

C Program to compute the series

#include
#include
int fact(int no)
{
int i,f=1;
for(i=1;i<=no;i++)
{
f=f*i;
}
return f;
}
void main()
{
int j,n;
float s=0,f;
clrscr();
printf("\nEnter the value of n: ");
scanf("%d",&n);
for(j=1;j<=n;j++)
{
f=fact(j);
s=s+1/f;
}
printf("Value of s is %0.3f",s);
getch();
}

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

Enter the value of n: 5
Value of s is 1.717

C Program to compute the seriesSocialTwist Tell-a-Friend

0 comments:

SUPPORT THIS BLOG