/in/foo.c: In function 'main':
/in/foo.c:10:5: error: '\U0000ff5d' undeclared (first use in this function)
10 | }
| ^~
/in/foo.c:10:5: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:10:7: error: expected ';' before 'for'
10 | }
| ^
| ;
11 | for (int i = 0; i < 2; i++) {
| ~~~
/in/foo.c:27:1: error: expected declaration or statement at end of input
27 | }
| ^
/in/foo.c:5:9: warning: unused variable 'new_arr' [-Wunused-variable]
5 | int new_arr[3][2];
| ^~~~~~~