在%c
中检索字符类型变量时,为什么必须在scanf()
中保留空格?
#include <stdio.h>
int main()
{
int i, j;
char c;
printf("Enter two numbers: ");
scanf("%d %d", &i, &j);
printf("Enter a character: ");
scanf("%c", &c);
return 0;
}
为什么此代码不起作用?