填空题

设在主函数中有以下定义和函数调用语句,且fun()函数为void类型,请写出fun()函数的首部 【7】
int main()

double s[10][22];
int n;

fun(s);

return 0;

【参考答案】

void fun(b[][22])