首页题库练习题目详情
面向对象程序设计单选题中等

以下代码的循环执行次数是多少? int i = 0; for(; i < 10; ) { printf("%d ", i++); }

A9次
B10次
C无限循环
D无输出