Use a recursive function to find the Fibonacci series.
Answers
Answered by
0
Answer:
Fibonacci series using recursion inC 1.#include<stdio.h>
2.int Fibonacci(int);
3.int main()
4.int n, i = 0, c;
5.scanf("%d",&n);
6.printf("Fibonacci series\n");
7.for ( c = 1 ; c <= n ; c++ )
Explanation:
That's your answer.
Hope this helps.
Mark me as brainliest.
Thank you.
Attachments:
Answered by
4
https://brainly.in/question/37556029
Similar questions