In C, during step by step debugging in a function, how can i view the content of an array in the "Autos?" window along with the other variables?

Posted by AppsAndGo on Stack Overflow See other posts from Stack Overflow or by AppsAndGo
Published on 2014-06-01T21:21:59Z Indexed on 2014/06/01 21:24 UTC
Read the original article Hit count: 120

Filed under:
|
|

I'm using VS 2012, and I'm working on a bubble sort. After searching I found a nifty trick to see the content of the array in the "Watch 1" tab, (How to view contents of an array while debugging in Code Blocks?), but going from "watch 1" to "Autos" every step to see what's changing in the array isn't practical at all. How can i see the array content within "Autos" along side my other changing variables, where i need it to show?

© Stack Overflow or respective owner

Related posts about arrays

Related posts about debugging