I am familiar with basic arrays...
Code:
int list[50]
Creates an array named list, that is 50 long.

How do I go about coding an array that is the length that the user inputs?

I thought about declaring a variable length, and then doing this:
Code:
int list[length];
So when the program would ask, "How long do you wish to make the array?", if the user inputted 27, the array would be 27 long..


...but that of course didn't work. Whats the best way to achieve this?

thanks all =)