P
Protoman
I'm getting a system error on this piece of code on WinXP:
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
volatile int* p=reinterpret_cast<int*>(0x59861);
for(int i=0;i<20;i++)
cout << *p << endl;
system("PAUSE");
return EXIT_SUCCESS;
}
Why does it keep crashing? And what's the mem address of the system
clock for WinXP? Thanks!!!!
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
volatile int* p=reinterpret_cast<int*>(0x59861);
for(int i=0;i<20;i++)
cout << *p << endl;
system("PAUSE");
return EXIT_SUCCESS;
}
Why does it keep crashing? And what's the mem address of the system
clock for WinXP? Thanks!!!!