首页题库练习题目详情
C语言程序设计单选题中等

下列语句中,能定义一个指针函数的是:

Aint *fun(int a);
Bint *fun(int *a);
Cint *fun(int a, int b);
D以上全部都是。