1、打开编译器CodeBlocks并创建一个c文件;
2、点击打开c文件并清除内容槐含嫌;
3、第一铅手行输入#include打开头文件;
4、输入intmain()声明主函数;
5、输入两个大括号;
6、在大括号内输入其他代码即可。
/*头文件内容,假设名字是test.h*/
#ifndef MYHEADFILE
#define MYHEADFILE
void InitInterpolation()
void Draw_Border()
void Draw_Background()
void Draw_Gray()
#endif
/*以下是test.c的内容*/
#include "test.h"
/*后面就是各个正消函数的实现*/
头文件一般用于多个源码的工程,当然,橡清核单源码可以写头梁掘文件,这个只是一种风格或习惯,一般是程序的声明部分写在.h中,如你的
char mainmenu(void)
char getBookType (void)
char bookItem (void)
int getBookNumber(void)
还有就是fiction,nonFiction的声明,可写成
extern int fiction
extern int nonfiction
/*头文件内容,假皮前明设名字是test.h*/#ifndef MYHEADFILE
#define MYHEADFILE
void InitInterpolation()
void Draw_Border()
void Draw_Background()
void Draw_Gray()
#endif
/*以下是test.c的内容*/
#include "test.h"
/*后面就是各个函数的实现*/燃告
同项目中其他各个文件需要使用这些函数时只需要下面这样一句:
#include "test.h"
千万不要包含.c文件,会出现悔知重复定义问题
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)