How to display a dynamically allocated array in the Visual Studio debugger?

Yes, simple.
say you have

char *a = new char[10];

writing in the debugger:

a,10

would show you the content as if it were an array.

Leave a Comment