填空题

下面程序执行后输出的结果是 【10】
int m=13;
int fun(int x,int y)
int m=3;
return(x*y-m);
main()
int a=7,b=5;
printf("%d\n",fun(a,b)/m);

【参考答案】

B