/in/foo.c: In function 'main':
/in/foo.c:9:9: warning: implicit declaration of function 'pritf'; did you mean 'printf'? [-Wimplicit-function-declaration]
9 | pritf("1\n");
| ^~~~~
| printf
/in/foo.c:22:17: error: expected '}' before 'else'
22 | else
| ^~~~
/in/foo.c:33:57: warning: format '%d' expects a matching 'int' argument [-Wformat=]
33 | printf("%d %d %d %d %d %d\n",e,d,c,b,a);
| ~^
| |
| int
/in/foo.c:34:57: warning: format '%d' expects a matching 'int' argument [-Wformat=]
34 | printf("%d %d %d %d %d %d\n",a,b,c,d,e);
| ~^
| |
| int
/in/foo.c: At top level:
/in/foo.c:69:17: warning: data definition has no type or storage class
69 | return0;
| ^~~~~~~
/in/foo.c:69:17: warning: type defaults to 'int' in declaration of 'return0' [-Wimplicit-int]
/in/foo.c:70:1: error: expected identifier or '(' before '}' token
70 | }
| ^