I\'m debugging my c++ code in Visual Studio 2010 and want to see the content of my array, say Q, which is 17x17. When I insert a breakpoint and try to debug, I see only the vari
You can't, at least not directly.
What you can do is put &array[0][0]
in the memory window, and then resize it so the number of columns matches one row of array
data.
Alternatively, you can put array[0],17
in the watch window, and then repeat it for array[1],17
, etc.
Not the answer you were looking for perhaps, but the watch window, while pretty powerful, just can't do what you want.