Get Email Subscription

Enter your email address:

Delivered by FeedBurner

Saturday, January 23, 2010

Write a program in c to find the sum s = 1/2 + 3/4 + 5/6 + 7/8 + 9/10 + 11/12



#include<stdio.h>
#include<conio.h>
#include<math.h>
main()
{
int i, s;
s = 0;
for (i=1; i < = 11; i=i+2)
{
s = s + i / (i+1);
}
printf("\n The sum is %d \n", s);
return(0);
}

Related Posts by Categories



0 comments:

About This Blog

Lorem Ipsum

  © Blogger templates Newspaper III by Ourblogtemplates.com 2008

Back to TOP