Fibonacci numbers

Fibonacci Series in C

A simple implementation of the Fibonacci number series. The Fibonacci series is formed by adding the latest two numbers to get the next one, starting from 0 and 1: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, ... #include /* C Standard Input and Output Library*/ /*Variable declarations*/ int number_of_terms; int pre_term = 0; int post_term = 1; int next_transition; int loop