/in/foo.c: In function 'main':
/in/foo.c:10:13: warning: implicit declaration of function 'sqrt' [-Wimplicit-function-declaration]
10 | y = sqrt(5 * x + 10);
| ^~~~
/in/foo.c:2:1: note: include '<math.h>' or provide a declaration of 'sqrt'
1 | #include <stdio.h>
+++ |+#include <math.h>
2 | int main() {
/in/foo.c:10:13: warning: incompatible implicit declaration of built-in function 'sqrt' [-Wbuiltin-declaration-mismatch]
10 | y = sqrt(5 * x + 10);
| ^~~~
/in/foo.c:10:13: note: include '<math.h>' or provide a declaration of 'sqrt'
/in/foo.c:11:16: warning: statement with no effect [-Wunused-value]
11 | } else { x >= 25
| ~~^~~~~
/in/foo.c:11:21: error: expected ';' before 'y'
11 | } else { x >= 25
| ^
| ;
12 | y = x * x * x;
| ~
/in/foo.c: At top level:
/in/foo.c:17:1: error: stray '\302' in program
17 | <U+00A0>
| ^~~~~~~~