Output first x values in the fibonacci sequence, where x is an argument to the program.
0, 1, 1, 2, 3, 5, 8, ...
Write the fibonacci creation function separate from the main function. The main function will invoke the fibonacci function. fibonacci function returns a fully populated array of fibonacci numbers for the size passed to it.
tion..