Is there any easy way to view the full content of multidimensional arrays in VC++ 2010 in the debugger (or some other way I suppose)?
David321 0 Light Poster
Recommended Answers
Jump to PostYou mean like this?
Jump to PostI used its built-in debugger to do that. Compile the program in debug mode. But if you allocated the array with new or maloc() using pointers then vc++ 2010 can't display the contents like that (see code example below)
int main() { int **ay = new int*[3]; …
All 7 Replies
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
David321 0 Light Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
David321 0 Light Poster
David321 0 Light Poster
David321 0 Light Poster
David321 0 Light Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.