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??
Thank you for answering, but you don't understand my question!