在c语言里#include<conio.h>是什么样的头文件,包含哪些函数?

 我来答
竭梓维平培
2019-09-13 · TA获得超过3.9万个赞
知道大有可为答主
回答量:1.3万
采纳率:30%
帮助的人:909万
展开全部
在c语言里#include
是调用函数的头文件。
包含的函数有如下这些:
  putch(int);
  ungetch(int);
  void
_Cdecl
clreol
(void);
  void
_Cdecl
clrscr
(void);
  void
_Cdecl
delline
(void);
  cgets(char
*);
  cprintf(const
char
*,
...);
  cputs(const
char
*);
  cscanf(const
char
*,
...);
  inp(unsigned
short);
  inpw(unsigned
short);
  getch(void);
  getche(void);
  kbhit(void);
  outp(unsigned
short,
int);
  outpw(unsigned
short,
unsigned
short);
  int
_Cdecl
gettext
(int
left,
int
top,
int
right,
int
bottom,
  void
*destin);
  void
_Cdecl
gettextinfo
(struct
text_info
*r);
  void
_Cdecl
gotoxy
(int
x,
int
y);
  void
_Cdecl
highvideo
(void);
  void
_Cdecl
insline
(void);
  void
_Cdecl
lowvideo
(void);
  int
_Cdecl
movetext
(int
left,
int
top,
int
right,
int
bottom,
  int
destleft,
int
desttop);
  void
_Cdecl
normvideo
(void);
  int
_Cdecl
puttext
(int
left,
int
top,
int
right,
int
bottom,
  void
*source);
  void
_Cdecl
textattr
(int
newattr);
  void
_Cdecl
textbackground
(int
newcolor);
  void
_Cdecl
textcolor
(int
newcolor);
  void
_Cdecl
textmode
(int
newmode);
  int
_Cdecl
wherex
(void);
  int
_Cdecl
wherey
(void);
  void
_Cdecl
window
(int
left,
int
top,
int
right,
int
bottom);
  har
*_Cdecl
cgets
(char
*str);
  int
_Cdecl
cprintf
(const
char
*format,
...);
  int
_Cdecl
cputs
(const
char
*str);
  int
_Cdecl
cscanf
(const
char
*format,
...);
  int
_Cdecl
getch
(void);
  int
_Cdecl
getche
(void);
  char
*_Cdecl
getpass
(const
char
*prompt);
  int
_Cdecl
kbhit
(void);
  int
_Cdecl
putch
(int
c);
  int
_Cdecl
ungetch
(int
ch);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
意法半导体(中国)投资有限公司
2023-06-12 广告
单片机,单片微型计算机。它是把中央处理器(CPU)、随机存取存储器(RAM)、只读存储器(ROM)、输入/输出端口(I/O)等主要计算机功能部件都集成在一块集成电路芯片上的微型计算机。单片机具有性能高、速度快、体积小、价格低、稳定可靠、应用... 点击进入详情页
本回答由意法半导体(中国)投资有限公司提供
摩恭莫寅
2019-12-19 · TA获得超过3.7万个赞
知道大有可为答主
回答量:1.4万
采纳率:34%
帮助的人:886万
展开全部
conio.h不是c标准库中的头文件。
  conio是console
input/output(控制台输入输出)的简写,其中定义了通过控制台进行数据输入和数据输出的函数,主要是一些用户通过按键盘产生的对应操作,比如getch()函数等等。
包含的函数:
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
居秀英银娟
2020-01-23 · TA获得超过3.8万个赞
知道大有可为答主
回答量:1.4万
采纳率:30%
帮助的人:968万
展开全部
conio.h不是C标准库中的头文件。
conio是Console
Input/Output(控制台输入输出)的简写,其中定义了通过控制台进行数据输入和数据输出的函数,主要是一些用户通过按键盘产生的对应操作,比如getch()函数等等。
包含的函数
cgets(char
*);
cprintf(const
char
*,
...);
cputs(const
char
*);
cscanf(const
char
*,
...);
inp(unsigned
short);
inpw(unsigned
short);
getch(void);
getche(void);
kbhit(void);
outp(unsigned
short,
int);
outpw(unsigned
short,
unsigned
short);
putch(int);
ungetch(int);
void
_Cdecl
clreol
(void);
void
_Cdecl
clrscr
(void);
void
_Cdecl
delline
(void);
int
_Cdecl
gettext
(int
left,
int
top,
int
right,
int
bottom,
void
*destin);
void
_Cdecl
gettextinfo
(struct
text_info
*r);
void
_Cdecl
gotoxy
(int
x,
int
y);
void
_Cdecl
highvideo
(void);
void
_Cdecl
insline
(void);
void
_Cdecl
lowvideo
(void);
int
_Cdecl
movetext
(int
left,
int
top,
int
right,
int
bottom,
int
destleft,
int
desttop);
void
_Cdecl
normvideo
(void);
int
_Cdecl
puttext
(int
left,
int
top,
int
right,
int
bottom,
void
*source);
void
_Cdecl
textattr
(int
newattr);
void
_Cdecl
textbackground
(int
newcolor);
void
_Cdecl
textcolor
(int
newcolor);
void
_Cdecl
textmode
(int
newmode);
int
_Cdecl
wherex
(void);
int
_Cdecl
wherey
(void);
void
_Cdecl
window
(int
left,
int
top,
int
right,
int
bottom);
har
*_Cdecl
cgets
(char
*str);
int
_Cdecl
cprintf
(const
char
*format,
...);
int
_Cdecl
cputs
(const
char
*str);
int
_Cdecl
cscanf
(const
char
*format,
...);
int
_Cdecl
getch
(void);
int
_Cdecl
getche
(void);
char
*_Cdecl
getpass
(const
char
*prompt);
int
_Cdecl
kbhit
(void);
int
_Cdecl
putch
(int
c);
int
_Cdecl
ungetch
(int
ch);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式