gdb can’t access memory address error

When I type x/xw 0x208c it gives me back error which says Cannot access memory at address 0x208c The disassembly for your program says that it does something like this: In other words, the 0x208c is a value (8332) that your program has hard-coded in it, and is not a pointer. Therefore, GDB is entirely … Read more