What if i got this:
Okay now, let's say, in the file file.txt, it's written : 0029F93CCode:
ofstream file("file.txt");
int Address;
int TheAddress;
file << &Address;
How could i make that TheAddress is Equal to 0029F93C?
I'm trying to retreive it from the file, but it retreives an integer.
Can anyone give me a hand? Thank you :D.

