首页题库练习题目详情
C语言程序设计单选题中等

C语言中,以下哪个是合法的循环结构?

Afor (int i=0; i<5; i++)
Bwhile (x != 0) { ... }
Cdo { ... } while (x != 0);
D以上都是