怎样创建自己的库函数啊 ????
有谁知道啊,告诉我,谢谢啊!!!
急用啊!
先随便写几个函数:
int max(int a,int b);
int min(int a,int b);
int max(int a,int b)
{
return a>b?a:b;
}
int min(int a,int b)
{
return a>b?b:a;
}
把上述的函数存成.h文件放在include文件夹中就可以了,
如:
#include <stdio.h>
#include <max.h> /*假设把上面的函数存成max.h*/
main()
{
int a=3,b=4;
printf("%d\n",max(a,b));
printf("%d",min(a,b));
getch();
}
先随便写几个函数:
int max(int a,int b);
int min(int a,int b);
int max(int a,int b)
{
return a>b?a:b;
}
int min(int a,int b)
{
return a>b?b:a;
}
把上述的函数存成.h文件放在include文件夹中就可以了,
如:
#include <stdio.h>
#include <max.h> /*假设把上面的函数存成max.h*/
main()
{
int a=3,b=4;
printf("%d\n",max(a,b));
printf("%d",min(a,b));
getch();
}
好象还要生成什么库文件啊 没有那么简单吧!!