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:

3 Ans BPSC Assistant Programmer Lab Aptitude test Programs and Queries with Proper solution (Taken By BCC)

1 Ans Write a C program to find nth Fibonacci number

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

1 Ans A C program to input and display an Array

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

1 Ans A C Program to split a number into digits

2 Ans BPSC aptitude test all programs solutions here

1 Ans Write a C program to check Bubble sort data structure and algorithm

1 Ans Write a C program for Interest Calculation

1 Ans Write a C Program to find factorial using recursion