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

最好把里面的主要函数列举一下

#include <conio.h>是一个控制输出的头文件,包含以下函数;textbackground(color)函数【设置文本的背景颜色】;clrscr()函数【清屏】;gotoxy()函数【定位】;getch()函数【输入字符看不见】

例如:

1、char ch;或int ch;

2、getch();或ch=getch();

3、用getch();会等待你按下任意键,再继续执行下面的语句;

4、用ch=getch();会等待你按下任意键之后,把该键字符所对应的ASCII码赋给ch,再执行下面的语句。

扩展资料:

1、头文件是conio.h,而不是stdio.h。

2、getch();并非标准C中的函数,不存在C语言中。所以在使用的时候要注意程序的可移植性。

3、国内C语言新手常常使用getch();来暂停程序且不知道此函数来源,建议使用getchar();(如果情况允许)代替此功能或更换一款编译器。

温馨提示:内容为网友见解,仅供参考
第1个回答  2009-01-20
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);本回答被提问者采纳
第2个回答  2015-09-18
在c语言里#include<conio.h>是调用函数的头文件。

包含的函数有如下这些:
  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);
第3个回答  2009-01-19
int _Cdecl getch( void );
int _Cdecl getche( void );
int _Cdecl kbhit( void );
int _Cdecl putch( int __c );
第4个回答  2009-01-19
直接打开那个文件看啦。

在c语言里#include<conio.h>是什么样的头文件,包含哪些函数?
include <conio.h>是一个控制输出的头文件,包含以下函数;textbackground(color)函数【设置文本的背景颜色】;clrscr()函数【清屏】;gotoxy()函数【定位】;getch()函数【输入字符看不见】例如:1、char ch;或int ch;2、getch();或ch=getch();3、用getch();会等待你按下任意键,再继续执行下...

#include "stdio.h" #include "conio.h"
stdio.h是c程序的基本头文件,里面包含了输入、输出等一些函数;conio.h主要做图形图像,例如说设置背景色的函数,字体颜色的函数、输出格式的函数等;math.h中包含了基本的数学函数,例如说实现绝对值、平方根、幂运算等;还有许多其他的头文件,不同的头文件包含的函数是不一样的。我们在实际编程序的...

在C++中#include <conio.h>是什么意思
conio.h不是C标准库中的头文件,是vc下的一个头文件。conio是Console Input\/Output(控制台输入输出)的简写,其中定义了通过控制台进行数据输入和数据输出的函数,主要是一些用户通过按键盘产生的对应操作,比如getch()函数等等。在C++中#include <conio.h>简单说就是“通用输入输出库”,主要是文件和...

急!!#include <conio.h>是什么东西 , 干什么用的 ?
stdio.h是标准输入输出,conio.h是控制台输入输出,都是头文件

c语言中#include"conio.h"#include"string.h"#include"st
stdio.h是c程序的基本头文件,里面包含了输入、输出等一些函数;conio.h主要做图形图像,例如说设置背景色的函数,字体颜色的函数、输出格式的函数等;"#include"string.h"就是包含一些关于字符串的处理的函数,哈有什么#include“math"都差不多了。你刚开始学c吧,其实现在你没有必要那些都搞得那么...

c语言头文件conio.h
conio.h是一个C标准库中的头文件。conio是Console Input\/Output(控制台输入输出)的简写,其中定义了通过控制台进行数据输入和数据输出的函数,主要是一些用户通过按键盘产生的对应操作,比如getch()函数等等。

C语言之#include<conio.h>表示什么
表示包含conio.h这个头文件,你可以运用里面的函数,如果开发平台编译的时候自动包含这个头文件,那么就可以省下#include<conio.h>这一步了 要用预编译命令"#include"将有关的"头文件"包括到用户源文件中.在头文件中包含国与用到的函数有关的信息."conio.h"函数库文件.include<conio.h>是包含这个头...

c语言中#include"conio.h"#include"string.h"#include"stdlib.h...
include"stdlib.h"是通用工具库,#include"string.h“是字符串处理库,#include"conio.h"这个就不知道了

C语言中<conio.h>是干什么用的,能具体解释一下吗
conio.h 不是标准C语言的一部分,不推荐使用 名称上很清楚,con = console 控制台 io = input \/ output 输入输出 .h = C语言头文件 (包含一些函数、常量、结构体的定义)里面所定义的函数主要是是用来和控制台交互的,比如移动光标,打印字符,获取键盘输入。

#include <stdlib.h> 这个头文件是什么作用?
stdlib头文件即standard library标准库函数头文件,包含了C、C++语言的最常用的系统函数,如rand、exit等。stdlib.h里面定义了五种类型、一些宏和通用工具函数。类型例如size_t、wchar_t、div_t、ldiv_t和lldiv_t,宏例如EXIT_FAILURE、EXIT_SUCCESS、RAND_MAX和MB_CUR_MAX等。常用的函数如malloc()、...

相似回答