getch()在C语言中是啥意思

发布网友 发布时间:2022-04-22 09:05

我来回答

2个回答

热心网友 时间:2024-01-08 02:53

getch() 是 conio.h 里的函数,它从键盘读取1个字符,拍入1个就即时读入。不须等待Enter键的到来。
程序例子:
#include <conio.h>
#include <stdio.h>
int main(){
int c;
printf("Press any key\n");
c = getch();
if (c) printf("A key is pressed from keyboard"); else
printf("An error occurred");
getch();
return 0;
}

热心网友 时间:2024-01-08 02:53

作用是从键盘上只接收一个字符,而且不把这个字符显示出来

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com