填空题

下面程序输出的结果是______。
int m=17;
int fun(int x,int y)
int m=3;
return(x*y-m);
main()
int a=5,b=7;
printf("%d\n”,fun(a,b)/m);

【参考答案】

A