Calculation of Fibonacci numbers fibonacci.c - use the forward recurrence relation F[n] = F[n-1] + F[n-2]; store calculated numbers as (long) integers. fibonacci2.c - compare recurrence relation with the (floating point) calculations using the analytical expression for F[n]. Notice the accumulation of errors in the floating point calculations.