单项选择题

若变量已正确定义,有以下程序段 i=0; do printf("%d,",i);while(i++); printf("%d\n",i); 其输出结果是

A.0,0
B.0,1
C.1,1
D.程序进入无限循环