#include <stdio.h> int main() { int i; for(i = 0; i < 10; i++) { printf("i value is %d\n", i); } return 0; }
《C语言》for语句(8)
原文:https://www.cnblogs.com/YiShen/p/9744161.html