Twitter Feed Facebook Google Plus Youtube

Adsense responsive

Recent Post below header

Thursday 14 March 2013

C PROGRAM: TO CALCULATE SUM OF SERIES 1+2+3+--------UPTO N TERMS

CODING:
#include<stdio.h>
#include<conio.h>
void main()
{
 int i,n,sum=0;
 clrscr();
 printf("sum of series upto: ");
 scanf("%d",&n);
 for(i=1;i<=n;i++)
 {
  sum=sum+i;
 }
 printf("Sum of series= %d",sum);
 getch();
}


CODING
OUTPUT



For any query or suggestion please comment below...

No comments:

Post a Comment