/in/foo.c: In function 'main':
/in/foo.c:6:2: error: expected ';' before 'scanf'
scanf("%f", &f);
^~~~~
/in/foo.c:8:20: error: stray '\357' in program
c = (5.0 / 9.0) * (f - 32);
^
/in/foo.c:8:21: error: stray '\274' in program
c = (5.0 / 9.0) * (f - 32);
^
/in/foo.c:8:22: error: stray '\210' in program
c = (5.0 / 9.0) * (f - 32);
^
/in/foo.c:8:29: error: expected ';' before ')' token
c = (5.0 / 9.0) * (f - 32);
^
/in/foo.c:8:29: error: expected statement before ')' token
/in/foo.c:11:21: error: 'C' undeclared (first use in this function)
printf("%.2f\n",C);
^
/in/foo.c:11:21: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:4:11: warning: variable 'c' set but not used [-Wunused-but-set-variable]
float f, c;
^