Write a program in C to find n th term of fibonacci series . | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Write a program in C to find n th term of fibonacci series .

fastly send this program

21st Sep 2017, 12:45 PM
Brijesh Bisht
Brijesh Bisht - avatar
1 Answer
0
you can use a for, then: sum = number1 + number2 for trading the numbers number1 = number2 number2 = sum then you just use the for to repeat until the "n" and print the number1
21st Sep 2017, 3:31 PM
Raran Costa
Raran Costa - avatar