Contact: aviboots(AT)netvision.net.il
39,890 questions
51,817 answers
573 users
#include <stdio.h> #define CALL_FUNCTION(func) (func()) void f1(void) { printf("f1()\n"); } void f2(void) { printf("f2()\n"); } int main() { CALL_FUNCTION(f1); CALL_FUNCTION(f2); return 0; } /* run: f1() f2() */