#include int map(int (*f)(int), int x){ return f(x); } int inc(int x){ return ++x; } int main(){ printf("hej %d\n", map(inc,5)); return 0; }