运算处理R-1-6-8强制

禁止数组越界使用

数组字面量下标越界
test.c
1void foo(void)
2{
3 int array[7];
4 array[7] = 0;
禁止数组越界使用 [gjb8114-r-1-6-8]
5}
数组下标未越界
test.c
1void foo(void)
2{
3 int array[7];
4 array[6] = 0;
5}