Math, asked by himeshakash6, 3 months ago

write a program to find the fibbonacci series of n numbers​

Answers

Answered by lata1213
1

Answer:

Given a number n, print n-th Fibonacci Number. Recommended: Please solve it on “ PRACTICE ” first, before moving on to the solution. Write a function int fib (int n) that returns F n. For example, if n = 0, then fib () should return 0. If n = 1, then it should return 1. For n > 1, it should return F n-1 + F n-2

Similar questions