You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
339 B
C

#include<stdio.h>
int main()
{
int n,sum;
printf("Enter the value of n: ");
scanf("%d",&n);
sum = getsum(n);
printf("Sum of n numbers: %d",sum);
return 0;
}
int getsum(n)
{
static int sum=0;
if(n>0)
{
sum = sum + n;
getsum(n-1);
}
return sum;
}