C++ Program to Find Sum of Square of n Natural Numbers
This C++ program will find the sum of squares of n natural numbers. Starting from 1, 2, 3, etc are called natural numbers. For example: n = 3 Then, Sum = 12 + 22 + 32 = 14 Output: Enter any number: 50Sum=42925