C compiler with embedded metalanguage.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

16 行
165 B

int arr[][3][5] = {
{
{ 0, 0, 3, 5 },
{ 1, [3] = 6, 7 },
},
{
{ 1, 2 },
{ [4] = 7, },
},
};
int
main(void)
{
return !(arr[0][1][4] == arr[1][1][4]);
}