Fibonacci series
Fibonacci series is a series where the next term is the sum of the previous two terms. The first two terms of the Fibonacci series are 0 and 1.
For example, 0 and 1 are first two terms, then the third term is 0 + 1 = 1, fouth term is 1 + 1 = 2 and so on.
Let's write a C Program to find Fibonacci series.
0 Comments