填空题 设在主函数中有以下定义和函数调用语句,且fun函数为void类型;请写出fun函数的首部{{U}} 【15】 {{/U}}。要求形参名为b。 main() { double s[10][22]; int n; …… fun(s); …… }
  • 1、
【正确答案】 1、void fun(double b[10][22])    
【答案解析】[评析] 本题答案:void fun(double b[10][22])。