/in/foo.c: In function 'main':
/in/foo.c:12:10: warning: implicit declaration of function 'fpr' [-Wimplicit-function-declaration]
12 | fpr(int j=0;j<2;j++){
| ^~~
/in/foo.c:12:14: error: expected expression before 'int'
12 | fpr(int j=0;j<2;j++){
| ^~~
/in/foo.c:12:30: error: expected ';' before '{' token
12 | fpr(int j=0;j<2;j++){
| ^
| ;
/in/foo.c:16:17: warning: left-hand operand of comma expression has no effect [-Wunused-value]
16 | for(int i=0;i<3,i++){
| ^
/in/foo.c:16:21: error: expected ';' before ')' token
16 | for(int i=0;i<3,i++){
| ^
| ;
/in/foo.c:18:37: error: expected ')' before ';' token
18 | printf("%d",b[i][j];
| ~ ^
| )
/in/foo.c:19:51: error: expected ';' before '}' token
19 | if(j<1)printf(""):
| ^
| ;
20 | }printf("\n"};
| ~
/in/foo.c:20:45: error: expected ')' before '}' token
20 | }printf("\n"};
| ~ ^
| )
/in/foo.c:20:45: error: expected ';' before '}' token
20 | }printf("\n"};
| ^
| ;
/in/foo.c:5:6: warning: unused variable 'new_' [-Wunused-variable]
5 | int new_[3][2];
| ^~~~
/in/foo.c: At top level:
/in/foo.c:22:49: error: expected identifier or '(' before 'return'
22 | return 0;
| ^~~~~~
/in/foo.c:23:49: error: expected identifier or '(' before '}' token
23 | }
| ^