The debugger shows only the first entry in the array. Usually when you want to watch a dynamically allocated array you "kind of" know it's size. In the above example I know the size of the array is 10. I can simply tell Visual Studio how many elements to display to get a proper view of the content of the array like this:
All you do is add the size of the array after the variable name, separated by a comma ",". Now you can watch the contents of any array.