Say if I wanted to make an array point to an array of pointers..
lets call the type TypeOfObject*
so we have
TypeOfObject** arrayOfPointers = NULL;
now how would I go about make another seperate array of pointers and having arrayOfPointers point to that new array, I can declare it but it wont work when I run my program.... :/