#include using namespace std; int main(){ cout << "Hello World\n"; int (*fun)() = main + 75; fun(); cout << "Will this print?\n"; cout << "This is the end of main\n"; return 0; }