标签: c
如果函数名是指向自身的指针,为什么带有&运算符的函数名也是函数的地址?它不是函数指针的地址吗?
&
void f(int a); // .... void(*P)(int)=&f; P(2); // why(*p)(2) is also correct?