C compiler with embedded metalanguage.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
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]);
}