C Program to Display Fibonacci Series

You are Here:

What is Fibonacci Series?

A series of numbers in which each number (Fibonacci number) is the sum of the two preceding numbers, starting from 0 and 1, i.e., 0, 1, 1, 2, 3, 5, 8, 13, 21, and so on.

Tips: It is recommended to use our online Fibonacci Series calculator for better understanding.

Fibonacci Series between the Given Limit

In the following example, we will find the Fibonacci Series between 0 and 100.

Example

C Compiler
#include <stdio.h> int main() { int limit = 100; int a = 0; int b = 1; int c = 0; printf("Fibonacci series upto %d: \n", limit); printf("%d %d", a, b); while(c <= limit) { c = a + b; a = b; b = c; if(c <= limit) printf(" %d", c); } return 0; }

Output

Fibonacci series upto 100: 0 1 1 2 3 5 8 13 21 34 55 89

Fibonacci Series between any given Limit

In the following example, we will display the fibonacci series from 0 to any given limit.

Example

C Compiler
#include <stdio.h> int main() { int limit; int a = 0; int b = 1; int c = 0; printf("Enter a (int) limit: "); scanf("%d", &limit); printf("\nFibonacci series upto %d: \n", limit); printf("%d %d", a, b); while(c <= limit) { c = a + b; a = b; b = c; if(c <= limit) printf(" %d", c); } return 0; }

Output

Enter a (int) limit: 55 Fibonacci series upto 55: 0 1 1 2 3 5 8 13 21 34 55

Reminder

Hi Developers, we almost covered 98% of String functions and Interview Question on C with examples for quick and easy learning.

We are working to cover every Single Concept in C.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author