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?