回显
#include<stdio.h>
#include<conio.h>
main()
{
int c;
printf("getchar:");
c=getchar();//缓冲,回显.
printf("%d",c);
printf("\ngetch:");
c=getch();//不缓冲,不回显
printf("%d",c);
printf("\ngetche:");
c=getche();//不缓冲,回显
printf("%d",c);
#include<conio.h>
main()
{
int c;
printf("getchar:");
c=getchar();//缓冲,回显.
printf("%d",c);
printf("\ngetch:");
c=getch();//不缓冲,不回显
printf("%d",c);
printf("\ngetche:");
c=getche();//不缓冲,回显
printf("%d",c);
}
所谓回显就是输入的数据是否会保留在控制台屏幕上.其实cin,scanf()都是回显的,否则在屏幕上是看不到输入的
字符的.摁下键盘上某个键,字符是发送到键盘缓冲区或者控制台缓冲区的,并不是直接就在屏幕上显示。若想屏幕上显示就要采用回显功能的函数。