#include <stdio.h> void f(int); void (*fun)() = f; int main(int argc, char *argv[]) { fun(16); return 0; } void f(int k) { printf("%d\n", k); }
16
Previous Question Next Question
Your comments will be displayed only after manual approval.