/in/foo.c: In function 'main':
/in/foo.c:18:19: warning: implicit declaration of function 'sqrt' [-Wimplicit-function-declaration]
18 | 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 |
/in/foo.c:18:19: warning: incompatible implicit declaration of built-in function 'sqrt' [-Wbuiltin-declaration-mismatch]
18 | y=sqrt(5*x+10);
| ^~~~
/in/foo.c:18:19: note: include '<math.h>' or provide a declaration of 'sqrt'