User profile: imStillPondering

User info
User name:imStillPondering
History
Joined:
Number of posts:6
Latest posts:

Dynamic 2D array with classes; program crashes after destructor
Thanks! I fixed operator<<. I actually had an overloaded operator= and a copy constructor but I didn...

Dynamic 2D array with classes; program crashes after destructor
So I know this code is a bit long for a post but it's short compared to the full thing. I narrowed i...

Dynamic 2D array with classes; program crashes after destructor
No, row is just an integer variable used for my for loop to iterate through all the rows of the matr...

Dynamic 2D array with classes; program crashes after destructor
matrixData is a 2D array and is a member variable of the class matrixtype. It is a pointer to a poin...

Dynamic 2D array; program crashes after input
Thanks coder777. That was a silly mistake on my part. It works now.