单选题 下面程序的输出结果是 ____
#include <stdio.h>
main()
{ int x=10;
{ int x=20;
printf("%d,",x);
}
printf("%d/n", x);
}
【正确答案】 B
【答案解析】