发布网友 发布时间: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
作用是从键盘上只接收一个字符,而且不把这个字符显示出来