ubuntu 下gcc编译时math.h库不是默认指定,出现 gcc undefined reference to sqrt,
出现这个错误需要在编译时指定连接那个库
gcc xx.c -lm -o xx.out
-l是指定xx库,m就指math库。
转:https://my.oschina.net/u/569652/blog/796028