我做的是*p=max 结果为什么不带*

已有函数max(a,b),为了让函数指针变量p只向max,正确的方法是p=max

啥意思啊
int (*p)(int,int); --- 定义函数指针
p = max; ---函数指针赋值
int a = p(3,10); ---调用函数指针