已有函数max(a,b),为了让函数指针变量p只向max,正确的方法是p=max
啥意思啊int (*p)(int,int); --- 定义函数指针p = max; ---函数指针赋值int a = p(3,10); ---调用函数指针