运行下面程序段的输出结果是
int i;for(i=0;i<10;i++);printf("%d",i);
A、0
B、1
C、9
D、10