0
1.3kviews
What do you mean by recursion? Write a program to find out summation of n no using recursion.
1 Answer
| written 9.3 years ago by |
In programming, when a function calls itself the case is called recursion and the function involved is called recursive function.
#include<stdio.h>
int add(int n);
void main()
{
int n;
printf("Enter a positive integer: ");
scanf("%d",&n);
printf("Sum = %d",add(n));
getche();
}
int add(int n)
{
if(n!=0)
return n+add(n-1);/* recursive call */ …