1 2 3 4 5 6 7
// code: 2 int f(int g()) { return g(); } int h(void) { return 2; } int main(void) { return f(h); }