/in/foo.c: In function 'main':
/in/foo.c:6:25: error: expected '=', ',', ';', 'asm' or '__attribute__' before '\U0000ff1b'
6 | int transposed[3][2];
| ^~
/in/foo.c:6:25: error: '\U0000ff1b' undeclared (first use in this function)
/in/foo.c:6:25: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:6:27: error: expected ';' before 'for'
6 | int transposed[3][2];
| ^
| ;
7 | for (int i = 0; i < 2; i++)
| ~~~
/in/foo.c:5:9: warning: unused variable 'matrix' [-Wunused-variable]
5 | int matrix[2][3];
| ^~~~~~