w3resource

C Exercises: Squared sum minus square of 1st 100 numbers


22. Difference Between Sum of Squares and Square of Sum Variants

The sum of the squares of the first ten natural numbers is,
12 + 22 + ... + 102 = 385
The square of the sum of the first ten natural numbers is,
(1 + 2 + ... + 10)2 = 552 = 3025
Hence the difference between the sum of the squares of the first ten natural numbers and the square of the sum is 3025 − 385 = 2640.
Write a C program to find the difference between the sum of the squares of the first one hundred natural numbers and the square of the sum.

C Code:

#include <stdio.h>
int main(void)
{
  unsigned sum1 = 0, sum2 = 0, i;
  for (i = 1; i <= 100; i++) {
    sum1 += i*i;
    sum2 += i;
  }
  printf("%u\n", sum2*sum2 - sum1);
  return 0;
}

Sample Output:

25164150

Flowchart:

C Programming Flowchart: Find the difference between the sum of the squares of the first one hundred natural numbers and the square of the sum.

For more Practice: Solve these Related Problems:

  • Write a C program to compute the difference between the square of the sum and the sum of the squares for the first n natural numbers.
  • Write a C program to calculate and display intermediate results while computing the sum of squares and square of the sum.
  • Write a C program to compute the difference for even and odd natural numbers separately and then combine the results.
  • Write a C program to generalize the computation for any user-specified n and output the final difference.

C Programming Code Editor:



Contribute your code and comments through Disqus.

Previous C Programming Exercise: Smallest positive number divisible by 1-20.
Next C Programming Exercise: Get the 1001st prime number

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.