c语言的入门函数 c语言函数使用方法( 七 )


{
/*
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语言的入门函数和c语言函数使用方法的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息 , 记得收藏关注本站 。

推荐阅读