当前位置:首页  综合

综合

conio函数头文件(conio h)

2024-07-06 18:01:10
导读 大家好,小东方来为大家解答以上的问题。conio函数头文件,conio h这个很多人还不知道,现在让我们一起来看看吧!1、简介   conio.h是C标...

大家好,小东方来为大家解答以上的问题。conio函数头文件,conio h这个很多人还不知道,现在让我们一起来看看吧!

1、简介   conio.h是C标准库中的头文件。

2、   conio是Console Input/Output(控制台输入输出)的简写,其中定义了通过控制台进行数据输入和数据输出的函数,主要是一些用户通过按键盘产生的对应操作,比如getch()函数等等。

3、   包含的函数:   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);   char *_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); 用法   conio 库不仅适用于 Window 平台,在 Linux 下也可使用.网上已经有兼容包,下载后打开就可使用;而至于Mac则完全跟Window没有区别,直接可以使用.。

本文到此分享完毕,希望对大家有所帮助。

免责声明:本文由用户上传,如有侵权请联系删除!