Introduction
Statistics
Contact
Development
Disclaimer
Help
sdf.org home page
#include <iostream>
using namespace std;
int main(void) {
char c;
char *ptr=(char*) 0x400c4c;
while(true) {
cout << "overwriting" << endl;
*ptr = 0x00;
ptr++;
cout << (void*) ptr << endl;
}
}