单项选择题

有如下程序:
#include <stdio.h>
main()
int x=23;
do
Printf("%d",x--);
while(! x);

该程序的执行结果是( )。

A.321
B.23
C.不输出任何内容
D.陷入死循环