gpt4 book ai didi

c - 打印用户输入的每个字符,无需 conio.h

转载 作者:行者123 更新时间:2023-11-30 19:31:17 25 4
gpt4 key购买 nike

我想制作一个永远运行并接受用户输入的程序,例如

while(1)
{
if(currentkeybeingpressed != NULL)
{
print(the current character); /* So that the program just waits until a key is
pressed and outputs the same letter the moment it is touched*/
}
}

我想在 KISS Controller 上执行此操作,该 Controller 没有准备好导入的 conio.h 文件,因此我无法使用 getch 函数。有没有其他方法可以找出当前按下的键?

最佳答案

#include<stdio.h>

int main() {
while(1){
putchar(getchar());
}
}

希望这有帮助。

关于c - 打印用户输入的每个字符,无需 conio.h,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49084084/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com