填空题

若有以下程序:
int f(int x,int y)

return (y-x)*x;

main()

int a=3,b=4,c=5,d;
d=f(f(3,4),f(3,5));
printf("%d\n",d);

执行后输出的结果是 【12】

【参考答案】

I