#include void test(int a) { printf("%d\n", a); } int main() { void (*fn)(int) = test; fn(3); return 0; }