Doubt in c program
how work this recursive function. would any one of you Explain this? please...
int Fib(int N)
{
if(int N)
return 1;
else
return Fib(N-1)+Fib(N-2);
}
int Fib(int N)
{
if(int N)
return 1;
else
return Fib(N-1)+Fib(N-2);
}
0