Let’s revisit the Fibonacci sequence, this time without an
array. Recall that the sequence is defined by the following
recurrence relation: F0 = 0 F1 = 1 Fk = Fk-1 + Fk-2 So, the
sequence looks like: 0, 1, 1, 2, 3, 5, 8, 13, 21, … Write a program
fib.c consisting only of a main() function that prompts the user
for the last Fibonacci number n to print, and then prints them from
F0 to Fn. (No file input...