One way is to use the Memory viewer. During debugging (when stopping at a breakpoint), go to the Debug menu> Windows > Memory > Memory 1 . get memory viewer. Then enter the memory address (copy the value from the pointer) so that you can view the memory around this area of your program memory.
When you right-click on a memory viewer, you can choose how you want to view data (like ANSI, like 4 integers, as 2 byte integers, like float, bla bla ...)
You can also use the Watch window during debugging. just use the pointer as an array (for example, if your pointer is char * t , the syntax t[0] will give your data with the specified pointer t
source share