c语言基本函数名 c语言函数名称的命名规则( 三 )


能:
计算两个时刻之间c语言基本函数名的时间差

法:
double
difftime(time_t
time2,
time_t
time1);
程序例:
#include
#include
#include
#include
int
main(void)
{
time_t
first,
second;
clrscr();
first
=
time(NULL);
/*
Gets
system
time
*/
delay(2000);
/*
Waits
2
secs
*/
second
=
time(NULL);
/*
Gets
system
time
again
*/
printf("The
difference
is:
%f
\
seconds\n",difftime(second,first));
getch();
return
0;
}
函数名:
disable

能:
屏蔽中断

法:
void
disable(void);
程序例:
/***NOTE:
This
is
an
interrupt
service
routine.
You
cannot
compile
this
program
with
Test
Stack
Overflow
turned
on
and
get
an
executable
file
that
operates
correctly.
*/
#include
#include
#include
#define
INTR
0X1C
/*
The
clock
tick
interrupt
*/
void
interrupt
(
*oldhandler)(void);
int
count=0;
void
interrupt
handler(void)
{
/*
disable
interrupts
during
the
handling
of
the
interrupt
*/
disable();
/*
increase
the
global
counter
*/
count++;
/*
reenable
interrupts
at
the
end
of
the
handler
*/
enable();
/*
call
the
old
routine
*/
oldhandler();
}
int
main(void)
{
/*
save
the
old
interrupt
vector
*/
oldhandler
=
getvect(INTR);
/*
install
the
new
interrupt
handler
*/
setvect(INTR,
handler);
/*
loop
until
the
counter
exceeds
20
*/
while
(count
20)
printf("count
is
%d\n",count);
/*
reset
the
old
interrupt
handler
*/
setvect(INTR,
oldhandler);
return
0;
}
c语言十个基本函数main函数——主函数;
printf函数——格式输出函数;
scanf函数——格式输入函数;
getchar函数——字符输入函数;
putchar函数——字符输出函数;
gets函数——字符串输入函数;
puts函数——字符串输出函数;
strlen函数——求字符串长度的函数;
strcmp函数——比较字符串的函数;
sqrt函数——求开平方值的函数 。
你说要十个的,所以我就写了十个?。≌庑?,本人认为都是基础的函数?。?
C语言常用词汇及函数有那些?常用词汇:
1、short:修饰int,短整型数据,可省略被修饰的int 。
2、long:修饰int , 长整型数据,可省略被修饰的int 。
3、long long:修饰int,超长整型数据,可省略被修饰的int 。
4、signed:修饰整型数据 , 有符号数据类型 。
5、unsigned:修饰整型数据 , 无符号数据类型 。
6、restrict:用于限定和约束指针,并表明指针是访问一个数据对象的唯一且初始的方式 。
7、return:用在函数体中,返回特定值(如果是void类型,则不返回函数值) 。
8、continue:结束当前循环 , 开始下一轮循环 。

推荐阅读