Solution Review: Finding Fibonacci Numbers with Array
This lesson discusses the solution to the challenge given in the previous lesson.
We'll cover the following...
We'll cover the following...
In the code above, at line 4, we create a global variable of type integer array called fib with length 10. This array will contain the first 10 Fibonacci numbers. Now, look at the header ...