单项选择题

下列程序的输出结果是_______。
fun()
static int x=5;
if(x++>5)printf("%d",x);
else printf("%d",x++);
main()
fun();fun();

A.67
B.69
C.68
D.78