标签: c eclipse compiler-errors
我正在使用那些导入
#include <stdio.h> #include <math.h>
我在这一行得到对'round'的未定义引用:
double res = round(atof(nextVal));
nextVal 是从文件中读取的双精度值。
我正在使用Eclipse INDIGO。
答案 0 :(得分:15)
在命令行中,您必须为gcc指定-lm选项以链接数学库。你必须在eclipse中找到如何做到这一点。
-lm