int(*f)(int)

int(*f)(int);

为指向函数的指针变量的定义方法,其中f为指向函数的指针变量,第一个int为函数返回值类型,第二个int为函数的形参类型。

原文地址:https://www.cnblogs.com/Mr210843013/p/4804848.html