Skip to content

Latest commit

 

History

History
8 lines (4 loc) · 330 Bytes

README.md

File metadata and controls

8 lines (4 loc) · 330 Bytes

The Fibonacci Sequence

For anyone unfamiliar, this is where each member of a sequence is the sum of the previous two members.

Example: 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89.

This small project consists of a tail recursive fibonacci function, and its non-recursive counterpart (using an iteration construct). Written in C.