C语言.h头文件
test.h
void hello(void)
{
printf("hello world\n");
}
p.c
#include <stdio.h>
#include "test.h"
int main()
{
hello();
return 0;
}
gcc p.c
./a.out
hello world
.h的文件可以理解为自己写的包

浙公网安备 33010602011771号