问题 单项选择题

有以下程序段:
void main()

int x=3;
do

printf("%d",x-=2);

while(!(--x));

其输出结果是( )。

A.1
B.3 0
C.1 -2
D.死循环

答案

参考答案:C

单项选择题
名词解释