codeblocks 主函数调用其他文件的函数时报错:"error:undefined reference to xxx"

1、有三个文件file1.c,file2.c,file3.c分别定义了三个函数用来输入字符串、删除字符、输出字符串。有test.c用来测试对输入字符串中的指定字符进行删除。test.c中的main()函数中用extern声明用到的三个函数是在其他文件中定义的外部函数。

codeblocks 主函数调用其他文件的函数时报错:"error:undefined reference to xxx"

 

 2、运行报错如下:

codeblocks 主函数调用其他文件的函数时报错:"error:undefined reference to xxx"

 

3、解决办法为:将file1.c,file2.c,file3.c中定义的函数写到三个.h文件中,这里命名为file1.h,file2.h,file3.h,同时在主函数即test.c的文件头增加 #include "file1.h"、#include "file2.h"、 #include "file3.h"。再次编译运行成功

codeblocks 主函数调用其他文件的函数时报错:"error:undefined reference to xxx"

 

上一篇:把1.txt每一行进行对比,长度大于8则写到2.txt里


下一篇:fileRename操作示例