I write console application which performs several scanf for int And after it ,I performs getchar :
int x,y;
char c;
printf("x:\n");
scanf("%d",&x);
printf("y:\n");
scanf("%d",&y);
c = getchar();
as a result of this I get c = '\n'
,despite the input is:
1
2
a
How this problem can be solved?
This is because scanf
leaves the newline you type in the input stream. Try
do
c = getchar();
while (isspace(c));
instead of
c = getchar();
Call fflush(stdin);
after scanf
to discard any unnecessary chars (like \r \n) from input buffer that were left by scanf
.
Edit: As guys in comments mentioned fflush
solution could have portability issue, so here is my second proposal. Do not use scanf
at all and do this work using combination of fgets
and sscanf
. This is much safer and simpler approach, because allow handling wrong input situations.
int x,y;
char c;
char buffer[80];
printf("x:\n");
if (NULL == fgets(buffer, 80, stdin) || 1 != sscanf(buffer, "%d", &x))
{
printf("wrong input");
}
printf("y:\n");
if (NULL == fgets(buffer, 80, stdin) || 1 != sscanf(buffer, "%d", &y))
{
printf("wrong input");
}
c = getchar();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With