1 2 3 4 5 6 7 8
// code: 1 int (*func)(); int f() { return 1; } int main() { func = &f; return (*func)(); }