指针函数:一个函数的返回值为指针,则该函数叫做指针函数。 int *fun(int a,int b){ }
函数指针:指向一个函数的指针变量,用来存放函数的入口地址。 int (*fun)(int,int);