/in/foo.c: In function 'main':
/in/foo.c:21:35: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'a'
21 | {int temp a[c=1];
| ^
/in/foo.c:21:36: warning: value computed is not used [-Wunused-value]
21 | {int temp a[c=1];
| ~^~~~~
/in/foo.c:22:34: warning: operation on 'c' may be undefined [-Wsequence-point]
22 | a[c]=a[c=1];
| ~^~
/in/foo.c:23:33: error: 'temp' undeclared (first use in this function)
23 | a[c=1]=temp;
| ^~~~
/in/foo.c:23:33: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:27:32: error: expected ')' before numeric constant
27 | for(int i=0;i<(m+n);i++0)
| ~ ^
| )