Q1:
EG: int array[size];
Can I use:
int &reference = array;
and then
sth = reference[3]?
Q2:
if I wanna to creat a flexible array in a class,which i can change the array size through a public function, what should i do? Make a pointer? I think it is
not that simple....