两者的风格是一样的
首先是 语言的头文件
header.h
#ifndef
#define
#include <stdio.h>
void print(void);
#endif
然后是函数文件
#inlcude "header.h"
void print()
{
printf("hello world\n");
}
然后是主函数
#include "header.h"
int mian()
{
print();
return 0;
}
无论在Linux还是windows 中,不用包含函数的文件。