Pointers to Functions

int (*fp)();
int (*fp2)(int, int);

extern int sum(int, int);

fp = sum;
fp2 = ∑

x = (*fp)(11, 22);
x = fp2(33, 44);