I have declared an array as follows:

int *arr;

Is there any way in visual studio to watch all the elements of the array while debugging, rather than having to manually place watch for an element *(arr+1), *(arr+2) and so on.

link|improve this question

79% accept rate
3  
That is a pointer to int not an array! – Murilo Vasconcelos Feb 4 '11 at 21:54
1  
feedback

2 Answers

up vote 14 down vote accepted

If arr is a pointer to an array of ten integers, you can add "arr,10" to the watch window and when you expand it it will show the ten elements [obviously, you can replace the 10 with whatever the length of your array is].

link|improve this answer
1  
precisely what I was looking for. Thanks! – Nemo Feb 4 '11 at 22:01
feedback

You can do a memory window on that address - will show all the contents.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.