Hello friends, in this post today, you will learn how to find fibonacci series in C programming language.
Before starting the program, we need to know about it that what is Fibonacci Series.
Fibonacci Series:-
The first two numbers in this series are 0 and 1. To find the next number one has to combine the two previous numbers.
For example:
0,1,1,2,3,5,8,13,21,34,55..........n.
In the above series we need to explained this.
First two no are 0 and 1, sum of these are 1. Next is 1 and 1, sum of these are 2. Again is 1 and 2, sum of these are 3.
For example:
0,1,1,2,3,5,8,13,21,34,55..........n.
In the above series we need to explained this.
First two no are 0 and 1, sum of these are 1. Next is 1 and 1, sum of these are 2. Again is 1 and 2, sum of these are 3.





0 Comments