linux C(undefined reference to `sqrt')时间:2021-07-12 05:30:17那是因为没有链接到math库 可以这样来做,在后面加上-lm. 代码如下: gcc 10.c -o 10 -lm