C Program to Find Sum of Series 1^2 + 2^2 + …. + n^2

This is a C Program to find the sum of series 1^2 + 2^2 + …. + n^2.

Problem Description

This C Program calculates the Sum of Series 1^2 + 2^2 + …. + n^2.

Problem Solution

Then the Sum of the series 1^2 + 2^2 + …. + n^2 = n(n + 1)(2n + 1) / 6.

Program/Source Code

Here is source code of the C Program to Find the Sum of Series 1^2 + 2^2 + …. + n^2. The C program is successfully compiled and run on a Linux system. The program output is also shown below.

/*
 * C Program to find the sum of series 1^2 + 2^2 + …. + n^2.
 */
#include <stdio.h>
 
int main()
{
    int number, i;
    int sum = 0;
 
    printf("Enter maximum values of series number: ");
    scanf("%d", &number);
    sum = (number * (number + 1) * (2 * number + 1 )) / 6;
    printf("Sum of the above given series : ");
    for (i = 1; i <= number; i++)
    {
        if (i != number)
            printf("%d^2 + ", i);
        else
            printf("%d^2 = %d ", i, sum);
    }
    return 0;
}
Program Explanation

In this C Program, we are reading the limit to compute summation from the series 1^2 + 2^2 + …. + n^2 using ‘number’ integer variable. To compute the sum of series, the following formula is used

advertisement
advertisement

Sum of series = 1^2 + 2^2 + …. + n^2= n(n + 1)(2n + 1) / 6.

For loop is used to compute the sum of series. Initialize the value of ‘i’ variable as 1. Check the condition that the value of ‘i’ variable is less than or equal to the value of ‘number’ variable value. If the condition is true, then execute the iteration of the loop.

If-else condition statement is used to check that the value of ‘i’ variable is not equal to value of ‘number’ variable. If the condition is true, then execute the statement by only printing the value of ‘i’ variable. Otherwise, if the condition is false then execute the else statement and print the sum of series.

Note: Join free Sanfoundry classes at Telegram or Youtube
Runtime Test Cases
 
Output:
$ cc pgm18.c
$ a.out
Enter maximum values of series number: 4
Sum of the above given series : 1^2 + 2^2 + 3^2 + 4^2 = 30

Sanfoundry Global Education & Learning Series – 1000 C Programs.

Here’s the list of Best Books in C Programming, Data-Structures and Algorithms

advertisement
If you wish to look at other example programs on Mathematical Functions, go to C Programming Examples on Mathematical Functions. If you wish to look at programming examples on all topics, go to C Programming Examples.

If you find any mistake above, kindly email to [email protected]

advertisement
advertisement
Subscribe to our Newsletters (Subject-wise). Participate in the Sanfoundry Certification contest to get free Certificate of Merit. Join our social networks below and stay updated with latest contests, videos, internships and jobs!

Youtube | Telegram | LinkedIn | Instagram | Facebook | Twitter | Pinterest
Manish Bhojasia - Founder & CTO at Sanfoundry
Manish Bhojasia, a technology veteran with 20+ years @ Cisco & Wipro, is Founder and CTO at Sanfoundry. He lives in Bangalore, and focuses on development of Linux Kernel, SAN Technologies, Advanced C, Data Structures & Alogrithms. Stay connected with him at LinkedIn.

Subscribe to his free Masterclasses at Youtube & discussions at Telegram SanfoundryClasses.