执行下面的代码,进行条件循环。
#include <stdio.h> int main(int argc, char const *argv[]) { int i; for (i = 0; i < 10; i++) { printf("%d\n", i); } return 0; }