why can't I input a character with scanf

612 Views Asked by At

why is this not working? im new to C... the scanf function works just fine with other data types, its just the char thats not giving me the option to input a character

char grade;
printf("Enter your grade: ");
scanf("%c", &grade);
printf("Your grade is %c", grade);
1

There are 1 best solutions below

1
On

It seems before entering the character there are inputs of other objects in your original program.

In this case you need to write

scanf(" %c", &grade);

Pay attention to the blank before the conversion specifier %c. It allows to skip white space characters.