若变量已正确定义,有以下程序段
I=0;

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

A.0,0

B.0,1

C.1,1

D.程序进入无限循环

正确答案是B