P052.c
Problem Statement
P052.c
Print the sum of this series for upto n element. Series: 1 + (1 + 2) + (1 + 2 + 3) + (1 + 2 + 3 + 4) + ... + (1 + 2 + 3 + ... + n)
Source Code
c
#include <stdio.h>
int main()
{
int n, sum = 0, temp = 0, i;
printf("Enter the n : ");
scanf("%d", &n);
for (i = 1; i <= n; i++)
{
temp += i;
sum += temp;
}
printf("%d", sum);
return 0;
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
● Author - Amit Dutta · Updated - 12 Dec 2025