单项选择题

执行下列程序
int fun(int x1,int x2)
int x;
x1>x2 (x=3):(x=4);
return x+x1;
void main()
cout<<fun(7,8);
后输出结果是 ______。

A.9
B.10
C.11
D.12