问题详情
有如下程序 main() { int x=3; do { printf("%d",x--);} while(!x); } 该程序的执行结果是______。
A.321
B.3
C.不输出任何内容
D.陷入死循环
请帮忙给出正确答案和分析,谢谢!