Fibonacci Series is C Program
Views (244)

In this blog, You will learn to create fibonacci series in C language...
fibonacci.c
#include <stdio.h> int main() { int i, n; // initialize first and second terms int t1 = 0, t2 = 1; // initialize the next term (3rd term) int nextTerm = t1 + t2; // get no. of terms from user printf("Enter the number of terms: "); scanf("%d", &n); // print the first two terms t1 and t2 printf("Fibonacci Series: %d, %d, ", t1, t2); // print 3rd to nth terms for (i = 3; i <= n; ++i) { printf("%d, ", nextTerm); t1 = t2; t2 = nextTerm; nextTerm = t1 + t2; } return 0; }
Run This Command :
gcc fibonacci.c -o fibonacci.exe
Run This Command :
fibonacci.exe
Output :
Enter the number of terms: 20 Fibonacci Series: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181,
0 Likes