Ask Question - Get Answer

1 Ans Write a C program to print Fibonacci number series

Asked by AL MaMun (4 Golds) Friday, 31 Jul 2020, 04:18 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 print fibonacci number series.


#include<stdio.h>

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++)

    {

        if(i<=1)

            c=i;

        else

        {

            c=a+b;

            a=b;

            b=c;

        }

        printf("%d ", c);

    }

    return 0;

}


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

Please log in to Upvote, Downvote and Report
           

Related Q/A:

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 find factorial using recursion

2 Ans BPSC aptitude test all programs solutions here

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

1 Ans A C program to input and display an Array

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

1 Ans Write a C++ program for BigMod math

1 Ans A Quest for Peace in the Middle East: Recent Perspectives - composition

1 Ans Write a C program to print Floyd Triangle

1 Ans Write a C program to reverse a number