定义函数指针

int add(int a, int b)
{
    return a+b;
}
int (*pn)(int,int)=add;

 

posted @ 2014-11-25 21:58  疯陈演义  阅读(164)  评论(0编辑  收藏  举报