The gist of it (class in the full code)
My program undergoes a run-time error every time I uncomment l70-72 . It's not the first time I encountered this particular problem. I asked my C++ instructor about this, but it had been for over 3 weeks now and she is yet to give me any feedback.
Basically I make a pointer to an array of objects, send that pointer into a function, try to execute commands defined in that function in main and get a run-time error, all whilst using heap. Something clearly happens with that pointer, or with the pointers in the array.
An error occurs when I call manage_Rectangle_arr(string strCommand, Rectangle * *arr, short *siArrayL) with any of the following: "fill array", "get areas" and "empty contents" (obviously the last two are related to "fill array" in nature, since they need it to be executed first in order to function)
deleteuncommented. This is because you try to delete a non-allocated memory area. – Max Mar 19 '12 at 12:37