/******************************************************************************
ID: 3608609 • Letter: #
Question
/******************************************************************************genFibonacci() computes the first N Fibonacci numbers and storesthem, in
sequence in the array F.
Pre: F[] is an array of dimension >= N.
N has been initialized.
Post: The first N cells of F[] contain the first N Fibonaccinumbers.
If N exceeds the dimension of F[] the behavior is undefined (butalmost
certainly not enjoyable).
******************************************************************************/
void genFibonacci(unsigned int F[], unsigned int N);
The sequence of Fibonacci numbers are defined by the followingrecurrence relation:
F(0)=F (1) =1
F(N )=F(N- 2)+F (N- 1) for N > 1