FIBONACCI SERIES IN C PROGRAMMING…..

YP
1 min readJan 7, 2020

--

#Wap To Find Fibonacci Series…….

Q: What is Fibonacci Series ?

ANS: Fibonacci series in C. Fibonacci series in C language using a loop and recursion. You can print as many terms of the series as required. The numbers of the sequence are known as Fibonacci numbers. The first few numbers of the series are 0, 1, 1, 2, 3, 5, 8, …,.

Suggestion: The recursive method is less efficient as it involves repeated function calls that may lead to stack overflow while calculating larger terms of the series. Using Memoization (storing Fibonacci numbers that are calculated in an array and using the array for lookup), we can reduce the running time of the recursive algorithm. The series has many applications in Mathematics and Computer Science.

Basic Structure Of C Programming…

Example Of Fibonacci Series In C Programming Is Given Below…..{This could also be done by recursion}

Fibonacci Series Program…..

If Any doubt post in comment…..

--

--

YP
YP

Written by YP

0 Followers

#PROGRAMMER

No responses yet