The sequence of Fibonacci numbers is defined as below:

a) The sequence of Fibonacci numbers is defined as below:
f(i) = f(i-1) + f(i-2) with f(0) = 1 and f(1) = 1
Draw a flowchart and then develop a ‘C’ program to calculate and display Fibonacci
numbers.


Leave a Reply