I have this code:
char* hello = "Hello World";
std::cout << "Pointer value = " << hello << std::endl;
std::cout << "Pointer address = " << &hello << std::endl;
And here is the result:
Pointer value = Hello World
Pointer address = 0012FF74
When I debug to my program using OllyDbg, I see that the value of 0x0012FF74 is e.g. 0x00412374.
Is there any way I can print the actual address that hello
points to?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…