c语言库文件.h
最近摸索的关于c语言 建立**.h 库文件访问
建立之前代码:
test.c:
建立之后:
同一文件夹下建立两个文件cfunction.h 和 test.c
cfunction.h:
建立之前代码:
test.c:
#include<stdio.h>
void swap(int *a,int *b)
{
int t;
t = *a;
*a = *b;
*b = t;
}
int main()
{
int a,b;
while(scanf("%d%d",&a,&b))
{
swap(&a,&b);
printf("%d %d\n",a,b);
}
return 0;
}
建立之后:
同一文件夹下建立两个文件cfunction.h 和 test.c
cfunction.h:
void swap(int *a,int *b)
{
int t;
t = *a;
*a = *b;
*b = t;
}
test.c:
#include<stdio.h>
#include "cfunction.h"
int main()
{
int a,b;
while(scanf("%d%d",&a,&b))
{
swap(&a,&b);
printf("%d %d\n",a,b);
}
return 0;
}