Ask Question - Get Answer

1 Ans Write a C program to print Fibonacci number using recursion

Asked by AL MaMun (4 Golds) Friday, 31 Jul 2020, 04:22 PM at (Education Tutorials)

Please log in to answer, like and save
0
Save 0

<<< Previous
Log in to Answer Next >>>

Answer(s):

C program - fibonacci number using recursion : 


#include<stdio.h>

int fibonacci(int n)

{

    if(n==0) return 0;

    if(n==1) return 1;

    return fibonacci(n-1) + fibonacci(n-2);

}

int main()

{

    int a=0, b=1, c, i, n, result;

    printf("How many fibonacci number do u need? ");

    scanf("%d", &n);

    for(i=0; i<n; i++)

    {

        result=fibonacci(i);

        printf("%d ", result);

    }

    return 0;

}


Answered by AL MaMun (4 Golds) Friday, 31 Jul 2020, 04:24 PM

Please log in to Upvote, Downvote and Report
           

Related Q/A:

1 Ans How to Learn HTML - HyperText Markup Language easily? 

1 Ans A C Program to split a number into digits

2 Ans Write a C program to implement Selection sort data structure and algorithm

3 Ans Three ways to find Greatest Common Divisor (GCD) and Least Common Multiple (LCM) in a C program

1 Ans Write a C program to check a Prime number

2 Ans Train Location Message TR Train_Code and Send to 16318 Example: TR 705 Send to 16318

1 Ans Which is the best and easy C programming learning website ?

1 Ans Write a C program to Find Armstrong Number series upto a Number

1 Ans Single Digit Interest Rate in the Banking Sector: Problems and Prospects - essay writing

1 Ans Write a C Program to check Anagrams of two strings