我想将驻留在func.c文件中的函数调用到main.c中
这是我的func.c
#include "func.h"
int func(int i) {
return ++i ;
}
这是我的头文件func.h
int func(int i);
这是我的主要代码:main.c
#include <stdio.h>
#include <stdlib.h>
#include "func.h"
main()
{
int res = func(3);
printf("%d\n",res);
system("pause");
}
编译主要代码时出现错误:未定义对'func'的引用
我的目标是从外部文件(不是同一编译单元的一部分)调用函数。
怎么做?谢谢!
最佳答案
#include <stdio.h>
#include <stdlib.h>
#include "func.h" // change ( since func.h is not a slandered header file its a user define header file)
main()
{
int res = func(3);
printf("%d\n",res);
system("pause");
}
关于c - 无法调用外部函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27618235/