有关结构体内用数组的问题....
![](zzz/editor/img/code.gif)
typedef struct tagShape //方块的形状 { int iId; //方块编号 int iShape[4][4]; }T_Shape; T_Shape tShape[7]; tShape[0].iId = 0; tShape[0].iShape[4][4] = {0,1,2,3,4};
请问哪里出错了????
typedef struct tagShape //方块的形状 { int iId; //方块编号 int iShape[4][4]; }T_Shape; T_Shape tShape[7]; tShape[0].iId = 0; tShape[0].iShape[4][4] = {0,1,2,3,4};