windows hsell 获取输入字符
时间: 2024-01-27 22:22:44 浏览: 121
使用C语言编写的Windows控制台程序可以使用以下代码获取用户输入的字符:
```c
#include <stdio.h>
#include <conio.h>
int main() {
char c;
printf("Please enter a character: ");
c = getch(); // 获取一个字符,不回显到屏幕上
printf("\nYou entered: %c\n", c);
return 0;
}
```
其中 `getch()` 函数从控制台读取一个字符,不会将读取的字符输出到屏幕上,这样用户输入的字符就可以保持私密性。
阅读全文