Generate the Series
Below coding is the program to generate n number of series. For example: (1*1)+(2*2)+(3*3)+……+(n*n) //GENERATING THE SERIES #include<stdio.h> #include<conio.h> void main() { int n,i,sum=1;
Below coding is the program to generate n number of series. For example: (1*1)+(2*2)+(3*3)+……+(n*n) //GENERATING THE SERIES #include<stdio.h> #include<conio.h> void main() { int n,i,sum=1;