In this blog we will create a program in c## for printing Fibonacci series to N level.

What is a Fibonacci Number?

A Fibonacci number is a series of numbers in which each Fibonacci number is obtained by adding the two preceding numbers. It means that the next number in the series is the addition of two previous numbers. Let the first two numbers in the series be taken as 0 and 1. By adding 0 and 1, we get the third number as 1. Then by adding the second and the third number (i.e) 1 and 1, we get the fourth number as 2, and similarly, the process goes on.

#fibonacci #series #c# #console application

Fibonacci Series In C# Console Application
1.25 GEEK