#include #include #include int main(){ printf("Hello World\n"); char *hw_maybe = (char*)main + 3755; puts(hw_maybe); char *modifiable_space = malloc(64); strcpy(modifiable_space, hw_maybe); modifiable_space[0] = 'J'; puts(modifiable_space); return 0; }