Question: written in C with comments throughout. The Fibonacci sequence 0,1,2,3,4,5,8,13 where the first two returns are 0 and 1, and each term thereafter is defined
written in C with comments throughout.
The Fibonacci sequence 0,1,2,3,4,5,8,13 where the first two returns are 0 and 1, and each term thereafter is defined recursively as the sum of the two preceding terms that is
Fib(n) = n for n < 2
FIB (n) = Fib(n-1) + Fib(n-2) for n>=2
Write a recursive function that returns the nth number in a Fibonacci sequence when n is passed to the function as an argument. For example, When n= 8 the function returns the 8th number in the sequence which is 13.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
