53GB

21 – FIBONACCI SERIES – C PROGRAMMING



21 – FIBONACCI SERIES – C PROGRAMMING

Program to find the Fibonacci Series.
Initial elements are 0 & 1
we have to find next elements with given formula
element n = element (n-1) + element (n-2)

Exit mobile version