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

以下哪一项声明了一个指针函数,并且该函数返回一个指向整型数组的指针?

Aint *fun(int a);
Bint (*fun)(int *);
Cint *fun(int *a);
Dint (*fun(int a))[*];