已知函数 int fun( int i )。以下声明函数指针pfunc的语句正确的是:
int*pfunc( int );
int *pfunc( int )();
int(*pfunc)(int);
int(*pfunc)(int)();