请输入您要查询的百科知识:

 

词条 getch
释义

函数名

getch

功 能

在windows平台下从控制台无回显地取一个字符,在linux下是有回显的。

用 法

int getch(void);

在linux平台下时(即包含的是curses.h),还应该在使用函数之前使用initscr(),使用完毕之后调用endwin().否则的话不需输入就会返回。

返回值

从键盘上读取到的字符

程序例

#include <stdio.h>

#include <curses.h> //linux 下

#include <conio.h> //window 平台

int main(void)

{

char ch;

initscr();//linux 下

printf("Input a character:");

ch = getch();

printf("\You input a '%c'\", ch);

endwin();//linux 下

return 0;

}

在WINDOWS/MS-DOS中,也可以利用getch()函数让程序调试运行结束后等待编程者按下键盘才返回编辑界面,用法:包含conio.h头文件后,在主函数结尾,return 0;之前加上getch();即可

这个函数可以让用户按下任意键而不需要回车就可以接受到用户的输入。可以用来作为“press any key to continue”的实现。

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/15 17:52:54