/* test.c - a simple C program */ void foo(){} int main() { void (*f)(); f = foo; (*f)(); foo(); (*f)(); }