- 1
Write a program in C to find n th term of fibonacci series .
fastly send this program
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