变量使用R-1-13-1强制
禁止局部变量与全局变量同名
局部变量与全局变量同名
test.c
1int the_global_var = 0;23void foo(void)4{5 int the_global_var = 0;禁止局部变量与全局变量同名 [gjb8114-r-1-13-1]6}