RECURSION FUNCTION
RECURSION FUNCTION
1.8 Recursion
Syntax:
Function1()
{
Function1();
}
The recursion continues until some condition is met .i,e it must have at least one if statement to
terminate the recursion.
#include <stdio.h>
int fibbonacci(int n);
int main()
{
int n,i,fibo;
printf(" enter the number:\n");
scanf("%d",&n);