int add(int a, int b) { return a+b; } int (*pn)(int,int)=add;
定义函数指针
原文:http://www.cnblogs.com/wumac/p/4122040.html