cleey
望着那一丝海线,若隐若现。落日下的海霞,数不尽的美,看不完的醉
c语言库文件.h
最近摸索的关于c语言 建立**.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;
}


<< 上一篇 java即时通信多线程,socket c链表 下一篇 >>
文章标签
随意 | Created At 2014 By William Clinton | 蜀ICP备14002619号-4 |