Computer Science, asked by Minho80, 4 months ago

Write a program to print 10 fibonacci numbers from the range specified by the user.
Output
Enter starting number of Fibonacci series ->3
10 fibonacci numbers are 3,5,8,13,21,34,55,89,144,153 ​

Answers

Answered by joydebchowdhury25127
1

should have the knowledge of the following C programming topics:

C Programming Operators

C while and do...while Loop

C for Loop

C break and continue

The Fibonacci sequence is a sequence where the next term is the sum of the previous two terms. The first two terms of the Fibonacci sequence are 0 followed by 1.

The Fibonacci sequence: 0, 1, 1, 2, 3, 5, 8, 13, 21

Visit this page to learn about the Fibonacci sequence.

Fibonacci Series up to n terms

Similar questions