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