我有以下计划:
int main(int argc, char *argv[])
{
char ch1, ch2;
printf("Input the first character:"); // Line 1
scanf("%c", &ch1);
printf("Input the second character:"); // Line 2
ch2 = getchar();
printf("ch1=%c, ASCII code = %d\n", ch1, ch1);
printf("ch2=%c, ASCII code = %d\n", ch2, ch2);
system("PAUSE");
return 0;
}
正如上述守则的作者所解释的:
程序将无法正常工作,因为在第1行,当用户按下 Enter 键时,它将在输入缓冲区中保留2个字符: Enter key (ASCII code 13)
和 \n (ASCII code 10)
。因此,在第2行,它将读取 \n
,而不会等待用户输入字符。
好的,我知道了。但我的第一个问题是: 为什么第二个 getchar()
(ch2 = getchar();
)不读取 Enter key (13)
,而不是 \n
字符?
接下来,作者提出了解决这些问题的两种方法:
使用 fflush()
写一个这样的函数:
void
clear (void)
{
while ( getchar() != '\n' );
}
This code worked actually. But I cannot explain myself how it works? Because in the while statement, we use getchar() != '\n'
, that means read any single character except '\n'
? if so, in the input buffer still remains the '\n'
character?