해결된 질문
작성
·
169
0
printf("Please input an integer and press enter.\n");
longinput;
charc;
while(scanf("%ld", &input) !=1)
{
printf("Your input -");
while((c =getchar()) !='\n') //scanf 제대로 입력 못했을 시, 사용자의 입력 버퍼메모리에 남아있음.
// 이걸 청소함과 동시에 그 입력이 뭐였는지 설명해줌.
putchar(c); //input left in buffer
printf(" - is not an integer. Please try again.\n");
}
printf("Your input %ld is an integer. Thank you.\n", input);
----------------------------------------------------------------
지금 여기서 scanf로 input에 hello what is integer? 라고 입력했을 때 putchar로 hello what is integer? 라고 버퍼 없애기로 그대로 다 나온것이 출력됬는데요..
지금 hello what is integer는 input 변수에 들어간거잖아요
근데 putchar(c)에서 hello what is integer가 또 나온다는건 변수 c에 hello what is integer가 버퍼로 있었다는 의미인데 input 변수에 넣었는데 c에 getchar로 어떻게 받을 수 그러니까 c에 버퍼로 남아있던 건가요? 어떻게 이럴수있는건가요...?