mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-08 15:04:05 +08:00
34 lines
719 B
HTML
34 lines
719 B
HTML
<h1>输入输出 - getchar</h1>
|
||
|
||
|
||
<p>原型:extern int getchar(void);</p>
|
||
|
||
<p>用法:#include <ctype.h></p>
|
||
|
||
<p>功能:读键</p>
|
||
|
||
<p>说明:从键盘上读取一个键,并返回该键的键值</p>
|
||
getch是到getchar的宏定义
|
||
|
||
举例:<pre><code class="language-c">
|
||
|
||
// getchar.c
|
||
|
||
#include <stdio.h>
|
||
|
||
main()
|
||
{
|
||
int c;
|
||
|
||
clrscr();
|
||
printf("Press key...");
|
||
while((c=getchar())!='Q')
|
||
{
|
||
clrscr();
|
||
printf("key: %c\nvalue: %x",c,c);
|
||
}
|
||
}
|
||
|
||
</code></pre>相关函数:<font color=gray>getkey</font>,<a href="kbhit.html">kbhit</a>
|
||
|