问题
填空题
函数f()定义如下,该函数返回值的数据类型是______。
struct ABC int a;int b;int c;;
struct ABC *f(struct ABC abc[2])
return (abc);
答案
参考答案:结构型数组的地址
函数f()定义如下,该函数返回值的数据类型是______。
struct ABC int a;int b;int c;;
struct ABC *f(struct ABC abc[2])
return (abc);
参考答案:结构型数组的地址