#include <stdio.h> void f() { printf("%d", 1); } int main() { void (*a)() = f; // 1 a(); // 2 return 0; }