填空题

以下程序通过函数指针p调用函数fun,请在填空栏内写出定义变量p的语句。
void fun(int*x,int*y)
……
main()
int a=10,b=20;
______:
p=fun; p(&a,&b) ;
……

【参考答案】

void(*p)();
热门 试题