如何在 C 中包含头文件
How To Include Header Files In C
我不知道如何在我的源文件中包含我自己的头文件。
我在我的头文件中声明添加(myhead.h):
int addition(int a, int b);
在源文件中我定义了它(myhead.c):
int addition(int a, int b){
return a+b;
}
在第三个源文件中,我包含了头文件并使用了加法(processSimulator.c):
#include "myhead.h"
#include <stdio.h>
int main(){
printf("Compiled %d\n", addition(3,5));
}
It gives me this error
您需要将 myhead.c 文件添加到 gcc 参数 gcc processSimulator.c my head.c
我不知道如何在我的源文件中包含我自己的头文件。
我在我的头文件中声明添加(myhead.h):
int addition(int a, int b);
在源文件中我定义了它(myhead.c):
int addition(int a, int b){
return a+b;
}
在第三个源文件中,我包含了头文件并使用了加法(processSimulator.c):
#include "myhead.h"
#include <stdio.h>
int main(){
printf("Compiled %d\n", addition(3,5));
}
It gives me this error
您需要将 myhead.c 文件添加到 gcc 参数 gcc processSimulator.c my head.c