This problem is from a solved problem in my old question, which is from: http://stackoverflow.com/questions/394763/c-inserting-2d-array-object-into-another-2d-array-object
But also created a new problem for me. Please read the question and the solution in the link to understand my problem. The solution in the previous question was to make my Data Member Function into a pointer to pointer, to allow the pass into the other Data Member Function. But while fixing that, the first Data Member Function which is "smallerArray.extractPiece()" now only return address of the pointer to the pointer and not the content of those pointers. I need the content in order for my 2nd Data Member Function "largerArray.extractArray(result)" to work properly, as I attempt run the code and gave an Window Error, and not a Compile Error.
Does anyone know how to extract the content of the smallerArray.extractPiece() and instead of getting of the address, and is there isn't, does anyone have any other methods of creating a 2D-Array Object?