●宣言、使い方
int plus1(int n)
{
return n + 1;
}
int main()
int (*f)(int); /* int型の引数を持ち、戻り値がint型の関数へのポインタ変数
f = plus1;
result = f(5);