c++ - Callstack address -


Do anyone know if / if I can read from a specific address with callstack? Suppose I know an offset from the callstack's base address, how do I get my base address?

thanks :)

The base address of the stack is registered in the ESP on Windows x86 architecture is. You can view ESP in the 'registers' windows vs debugger


Comments