6_7_6_04_funcptr_decl.c (93B)
1 int id(int x) { return x; } 2 3 int test_main(void) { 4 int (*fp)(int) = id; 5 return fp(42); 6 }