What is Fibonacci Numbers
By definition in mathematics, the Fibonacci Numbers are the numbers in the below sequence:

By definition, the first Fibonacci number is 0 and second Fibonacci number is 1. Then each subsequent number is calculated based on sum of the previous two. Follow on this definition, the Fibonacci number Nth can be calculated as the formular follows:

with seed values

In Mathematics, this is also called recurrence relation.
Recursive Fibonacci Series C function