C Program to print fibonacci series upto n number


In this program, You will learn how to print fibonacci series up to n number in c.


5th: 0 1 1 2 3

Example: How to print fibonacci series up to n number in c.

#include<stdio.h>

int main() {

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

  printf("How many number:");
  scanf("%d", & n);

  printf("Fibonacci series:");
  printf("%d %d ", a, b);

  while (i < n) {
    c = a + b;
    printf("%d ", c);
    a = b;
    b = c;
    i++;
  }

  return 0;
}

Output:

How many number:10                                                                                                                     
Fibonacci series:0 1 1 2 3 5 8 13 21 34