当前位置: 技术问答>linux和unix
c语言的.c和.h问题
来源: 互联网 发布时间:2015-12-12
本文导语: Linux下c语言编程中,.c文件如果想和.h文件关联怎么做,是不是用makefile文件? 好像简单的写个.h文件,并在里面声明.c文件中的函数是不行的 | /*hello.h*/ #ifdef __HELLO_H__ #define __HELLO_H__ void func(...
Linux下c语言编程中,.c文件如果想和.h文件关联怎么做,是不是用makefile文件?
好像简单的写个.h文件,并在里面声明.c文件中的函数是不行的
好像简单的写个.h文件,并在里面声明.c文件中的函数是不行的
|
/*hello.h*/
#ifdef __HELLO_H__
#define __HELLO_H__
void func();
#endif
/*end hello.h*/
/*hello.c*/
#include "hello.h"
int main()
{
func();
return 0;
}
void func()
{
//代码
}
#ifdef __HELLO_H__
#define __HELLO_H__
void func();
#endif
/*end hello.h*/
/*hello.c*/
#include "hello.h"
int main()
{
func();
return 0;
}
void func()
{
//代码
}