/in/foo.c: In function 'main':
/in/foo.c:14:24: warning: missing terminating ' character
14 | printf("%.3f\n"'y);
| ^
/in/foo.c:14:24: error: missing terminating ' character
14 | printf("%.3f\n"'y);
| ^~~~
/in/foo.c:14:24: error: expected ')' before 'return'
14 | printf("%.3f\n"'y);
| ~ ^
| )
15 | return 0;
| ~~~~~~
/in/foo.c:14:20: warning: format '%f' expects a matching 'double' argument [-Wformat=]
14 | printf("%.3f\n"'y);
| ~~~^
| |
| double
/in/foo.c:15:18: error: expected ';' before '}' token
15 | return 0;
| ^
| ;
16 | }
| ~
/in/foo.c:5:17: warning: variable 'y' set but not used [-Wunused-but-set-variable]
5 | float x,y;
| ^