c语言中文件conio.h中window()函数怎么用
发布网友
发布时间:2022-04-30 15:25
我来回答
共1个回答
热心网友
时间:2022-06-26 06:56
conio.h
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);