/in/foo.c: In function 'main':
/in/foo.c:14:32: warning: missing terminating " character
14 | printf("%.2f\n%.2f\n,x1,x2);
| ^
/in/foo.c:14:32: error: missing terminating " character
14 | printf("%.2f\n%.2f\n,x1,x2);
| ^~~~~~~~~~~~~~~~~~~~~
/in/foo.c:15:11: error: expected expression before '}' token
15 | }else if(delta==0){
| ^
/in/foo.c:14:32: error: expected ';' before '}' token
14 | printf("%.2f\n%.2f\n,x1,x2);
| ^
| ;
15 | }else if(delta==0){
| ~
/in/foo.c:20:17: error: expected ';' before '}' token
20 | return 0
| ^
| ;
21 | }
| ~
/in/foo.c:4:31: warning: variable 'x2' set but not used [-Wunused-but-set-variable]
4 | double a,b,c,delta,x1,x2;
| ^~