Joined: 13 Feb 2013 Posts: 6 Location: United States
Posted: Wed Feb 13, 2013 6:26 pm Post subject: Can't find "static" address of value in MY program
Not sure best way to ask... I've dealt with multi level pointers in cheat engine a lot, and have had success most of the time, but for whatever reason, I cannot fine a static address in my simple c++ program for the value.
It's a very simple program...can someone help explain this one to me? I was curious of how things worked in code, which is why I did this.
int main()
{
int * ptr;
int i=0;
ptr = &i;
for(;
{
cin >> *ptr;
cout << *ptr << endl;
cout << ptr << endl;
}
return 0;
}
I cannot seem to trace the value back to any type of static address...please help
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum