循环控制R-1-9-1强制
禁止 for 循环控制变量使用非局部变量
使用非局部变量
test.c
1int i = 0;23void foo(void)4{5 for (i = 0; i < 7; ++i)禁止 for 循环控制变量使用非局部变量 [gjb8114-r-1-9-1]6 ;7}