填空题

若有如下程序:
void sub()
static int x=8;
x/=2;printf("%d",x);

main()
int m;
for(m=0;m<2;m++) sub();
则程序运行后的输出结果是 【9】

【参考答案】

42