Quick questions about pointers. In this example:
Object *O;
Object** array = new Object*[3];
O = array[0];
In this example, Does O point to the spot array[0] or the object located in the position? For example, if that object in index 0 gets swapped to say object in spot 2, I understand that O should still have access to that object not the new one now in array[0], right?
Sorry just want to double check. Been working over a day w/o sleep & starting to question what's what at this point.