问题
填空题
设在主函数中有以下定义和函数调用语句,且fun()函数为void类型,请写出fun()函数的首部 【7】 。
int main() double s[10][22];
int n;
...
fun(s);
...
return0;
答案
参考答案:void fun (double b [][22])
设在主函数中有以下定义和函数调用语句,且fun()函数为void类型,请写出fun()函数的首部 【7】 。
int main() double s[10][22];
int n;
...
fun(s);
...
return0;
参考答案:void fun (double b [][22])