getch是一個計算機函式,在windows平台下從控制台無回顯地取一個字元,在linux下是有回顯的。用法是int getch(void)。
基本介紹
- 中文名:getch
- 概述 :在windows平台下從控制
- 用 法:int getch(void);
- 返回值:從鍵盤上讀取到的字元
函式名
用法
返回值
頭檔案
程式例
#include<stdio.h>#include<conio.h>int main(void){ char ch; printf("Input a character:"); ch=getch(); printf("\nYou input a '%c'\n",ch); return 0;}
#include<stdio.h>#include<curses.h>intmain(void){ char ch; init scr(); printf("Input a char acter:"); ch=getch(); printf("\nYou input a '%c'\n",ch); endwin(); return 0;}