/in/foo.c: In function 'main':
/in/foo.c:14:20: error: '\U0000ff08' undeclared (first use in this function)
14 | x2=(-b-sqrt(m))/(2*a);
| ^~
/in/foo.c:14:20: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:14:32: error: expected ';' before '\U0000ff09'
14 | x2=(-b-sqrt(m))/(2*a);
| ^~
| ;
/in/foo.c:21:15: warning: statement with no effect [-Wunused-value]
21 | else(m<0){
| ~~^~~
/in/foo.c:21:18: error: expected ';' before '{' token
21 | else(m<0){
| ^
| ;
/in/foo.c:6:21: warning: unused variable 'x' [-Wunused-variable]
6 | float x1,x2,x;
| ^