函数指针 & 指针函数

参考链接

https://blog.csdn.net/luoyayun361/article/details/80428882

函数指针

本质是指针, 不过可以指向函数

int (*fun)(int x,int y);

指针函数

本质是函数, 返回的是指针

int *fun(int x,int y);

Hope is a good thing,maybe the best of things,and no good thing ever dies.----------- Andy Dufresne
原文地址:https://www.cnblogs.com/eat-too-much/p/14841432.html