Possible Duplicate:
View array in Visual Studio debugger?
I declare an array of 50 elements using:
int *ans;
ans = new int[50];
yet when I'm looking at the 'Locals' list and try to expand the array, it have only one element, why's that? am I doing something wrong?