C语言头文件
[1]格式
-
库文件 #include
-
自定义文件 #include "filename" [2] 如何避免多个相同的头文件重复包含
[2]条件编译
#include <stdio.h>
#include "test.h"
#include "test.h"
int main()
{
return 0;
}
//其中test.h作出以下宏定义和条件编译代码
#ifndef enen
#define enen
#endif
[1]格式
库文件 #include
自定义文件 #include "filename" [2] 如何避免多个相同的头文件重复包含
[2]条件编译
#include <stdio.h>
#include "test.h"
#include "test.h"
int main()
{
return 0;
}
//其中test.h作出以下宏定义和条件编译代码
#ifndef enen
#define enen
#endif
相关推荐