This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to watch the *pointer = array[10] in the debug WATCH windows

When the *pointer point to an array, as follow:

int *pointer = malloc(sizeof(int) * 10);

How can I watch the array in the debug WATCH windows?

In Visual studio , we can use "pointer, 10" to watch the array easily.  Can keil do like this??