Ask Question - Get Answer

1 Ans Write a C program to find nth Fibonacci number

Asked by AL MaMun (4 Golds) Friday, 31 Jul 2020, 04:16 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 to find nth Fibonacci number


#include<stdio.h>

int main()

{

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

    printf("Want nth Fibonacci Number? ");

    scanf("%d", &n);

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

    {

      c=a+b;

      a=b;

      b=c;

    }

    printf("nth Fibonacci Number = %d", b);

    return 0;

}


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

Please log in to Upvote, Downvote and Report
           

Related Q/A:

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

1 Ans Write a C++ program for BigMod math

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

1 Ans Write a C program to print Floyd Triangle

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

2 Ans Write a C program for Binary Search algorithm

1 Ans Write a C program to implement Insertion sort data structure and algorithm

1 Ans Write a C program to find the highest and lowest number in a series

2 Ans BPSC Programming Aptitude Lab Test Important programs

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