/*WAP in C to print the following series and its sum*/ //Print Series & Sum: '1+3+5+7+....n = sum' #include int main () { int n, i, sum=0; printf ("\nEnter the limit of the series: "); scanf ("%d", &n); for (i=1; i