News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

Memory Window CodeBlocks - c++?

Started by dominover, August 05, 2014, 04:20:21 AM

Previous topic - Next topic

dominover

Hi
The attached is a picture of a memory window used for debugging in Visual Studio.  Just wondering if there is any such thing in CodeBlocks? 

Thanks

ollydbg

Yes, we open a memory window to watch memory contents when debugging.
Click Menu->Debug->Debug Windows->Memory Dump to see it.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.