So this is what code I have so far and I am confused as what I need to do for the rest of it. I need a program that generates the fibonacci sequence to the number of calculations the user enters...that works. What I need left is to dynamically allocate memory and build an array around it...
Any help would be greatly appreciated
Well, the way you're doing is a little odd to me, but from a quick glance, seems to work. If you want to get real fancy, you'd notice that calculating fib(n-1) means calculating fib(n-2). There is a clever way to calculate them faster by storing the results that you'll use again and again.