Fibonacci series in c
Fibonacci series in c programming: c program for Fibonacci series without and with recursion. Using the code below you can print as many number of terms of series as desired. Numbers of Fibonacci sequence are known as Fibonacci numbers. First few numbers of series are 0, 1, 1, 2, 3, 5, 8 etc, Except first two terms in sequence every other term is the sum of two previous terms, For example 8 = 3 + 5 (addition of 3, 5). This sequence has many applications in mathematics and Computer Science.
Fibonacci series in c using for loop
Output of program:
Enter the number of terms
10
first 10 terms of fibonacci series are :
0
1
1
2
3
5
8
13
21
34
No comments:
Post a Comment