getchar,getch

2018-11-11 15:45 更新

 原型:extern int getchar(void);
 
 用法:#include <ctype.h>
 
 功能:读键
 
 说明:从键盘上读取一个键,并返回该键的键值
       getch是到getchar的宏定义
 
 举例:

     // getchar.c
     
     #include <stdio.h>
     main()
     {
       int c;
       
       clrscr();
       printf("Press key...");
       while((c=getchar())!='Q')
       {
         clrscr();
         printf("key: %c\nvalue: %x",c,c);
       }
     }      


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号