单选题

下面程序的执行结果是(   )。

#include <stdio.h>

void main()

{

Int x=23;

do{

printf(“%d”,x--);

}while(!x);

}

【正确答案】 B
【答案解析】