Advertisements
Advertisements
Question
Write a program for finding sum of series 1+2+3+4+…….upto n terms.
Solution
Program :-
Source code :
//program to calculate sum of series up to n terms 1 + 2 + 3 +…+n.
#include <stdio.h>
#include <conio.h>
void main( )
{
int n,i;
int sum=0;
printf("Enter the n i.e. max value of series: ");
scanf("%d",&n);
sum = (n * (n + 1)) / 2;
printf("Sum of the series: ");
for (i =1 ; i <= n ; i++)
{
if (i!=n)
printf("%d + ",i);
else
printf("%d = %d ",i,sum);
}
getch( );
Output :-
Enter the n i.e. max value of series: 5 Sum of the series: 1 + 2 + 3 + 4 + 5 = 15 |
APPEARS IN
RELATED QUESTIONS
Write the output of following code:
#include<stdio.h>
int main()
{
int val = 1;
do{
val++;
++val;
}while(val++>25);
printf(“%d\n”,val);
return 0;
}
Write a program to validate whether accepted string is palindrome or not.
Write a program to find transpose of matrix without making use of another matrix.
Define structure consisting of following elements
1. student roll_no
2. student name
3. student percentage
Write a program to read records of 5 students of and display same.
State True or False with reason.
while(0); is an infinite loop.
WAP to print the sum of following series.
1+22+33+………+nn
Write a program to perform matrix multiplication by passing input matrix to the function and printing resultant matrix.
Write a program to display following pattern:
1
232
34543
4567654
567898765
WAP to print all possible combination of 1,2,3 using nested loops.
Explain continue and break statements with the help of suitable examples.