C语言里怎样建立头文件?
1个回答
展开全部
举例(程序已调试可以运行非常简单楼主有什么疑问可以交流交流):
header
file:(max.h)
#ifndef
MAX_NUMBER
//
MAX_NUMBER
为任意的
#define
MAX_NUMBER
//
重复定义
#include<stdio.h>
int
max(int
a,int
b);
#endif
source
file:(main.c)
#include"max.h"
//
与头文件名相同
int
main()
{
extern
int
a,b;
int
,c;
printf("Please
input
the
value
of
a:
");
scanf("%d",&a);
printf("Please
input
the
value
of
b:
");
scanf("%d",&b);
c=
max(a,b);
printf("The
max
number
of
%d
and
%d
is
%d!\n",a,b,c);
return
0;
}
source
file:(max.c)
#include"max.h"
//
与头文件名相同
int
a,b;
int
max(int
m,int
n)
{
if(m>=n)
{return
(a);}
else
{
return
(b);
}
}
header
file:(max.h)
#ifndef
MAX_NUMBER
//
MAX_NUMBER
为任意的
#define
MAX_NUMBER
//
重复定义
#include<stdio.h>
int
max(int
a,int
b);
#endif
source
file:(main.c)
#include"max.h"
//
与头文件名相同
int
main()
{
extern
int
a,b;
int
,c;
printf("Please
input
the
value
of
a:
");
scanf("%d",&a);
printf("Please
input
the
value
of
b:
");
scanf("%d",&b);
c=
max(a,b);
printf("The
max
number
of
%d
and
%d
is
%d!\n",a,b,c);
return
0;
}
source
file:(max.c)
#include"max.h"
//
与头文件名相同
int
a,b;
int
max(int
m,int
n)
{
if(m>=n)
{return
(a);}
else
{
return
(b);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询