scanf %c 연속사용시 버퍼문제
scanf 함수 사용시 Enter 키가 버퍼에 남아서 다음 scanf 함수 사용시 제대로 입력이 받아지지 않는 현상 char first, middle, last; int year; printf("Enter the current year and press enter"); scanf("%d", &year); printf("Type in 3 initials and press enter"); //fflush(stdin); scanf("%c%c%c", &first, &middle, &last); printf("Hello %c%c%c, let's check your coin's value in %d\n", first, middle, last, year); return 0; 해결방법 1: scanf 사용시, 다음 s..
더보기