This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS5.5用sizeof求二维数组的所占空间出错

、、、、、程序、、、、、、、、、、、、、、、

unsigned intTable_3[][3] = {
1, 3, 10,
2, 7, 12,
3, 21, 86,
4, 211, 42,
5, 22, 164,
6, 363, 24,
5, 71, 96
};

for (k=0;k<sizeof(Table_3)/sizeof(Uint32)/3;k++){
if (Table_3[k][0]>=Length){
F1=Table_3[k][1];
F2=Table_3[k][2];
break;
}
}

、、、以下是报错信息、、、、、、、、、、、、、

请问哪里出差了吗?

同样的程序我在vs2013可以跑通,