1
typedef int (*op_t)(int,int); int add(int a,int b){return a+b;} int sub(int a,int b){return a-b;} int dispatch(int a,int b,op_t t){return t(a,b);}