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