getch和getchar函数之间的确切区别是什么?
getch
getchar
最佳答案
getchar()是从stdin获取字符的标准函数。getch()是非标准的。它从键盘获取一个字符(可能与标准输入不同),并且不回显它。
getchar()
getch()