单选题 执行下列程序
int fun(int x1,int x2)
int x;
x1>x2 ?(x=3):(x=4);
return x+x1;

void main()
cout<<fun(7,8);

后输出结果是 ______。

【正确答案】 C
【答案解析】