You are looking at doing something that looks dynamic. You are most likely going to need pointers.
int *array_of_int;
array_of_int = new int[SIZE];
you should also check to make sure that the memory was allocated
if( !array_of_int )
memory was not allocated.
don't forget to delete it later
delete array_of_int;
probably would be best if you read up on pointers
