我在C语言中一做浮点运算编译就有错误,不知道这是什么问题,是我的设置不对 还是怎么回事??软件用的CCS2.2,程序如下(最简单的程序都不行): #include "math.h" int main() { float x,y,z; x = 12.3; y = 239.2; z = y-x; while(1); } 错误如下: [Linking...] "C:\ti\c2000\cgtools\bin\cl2000" -@"Debug.lkf"
undefined first referenced symbol in file --------- ---------------- FS$$SUB E:\2812\test\Debug\main.obj >> error: symbol referencing errors - './Debug/test.out' not built
哪位大哥知道这是什么问题??? |