为什么在c中使用字符类型变量时必须在“%c”中保留空格?

时间:2019-04-26 19:29:08

标签: c scanf

%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;
}

为什么此代码不起作用?

0 个答案:

没有答案