• 2022-06-07
    以下关于字符变量或常量的计算,错误的是?
    A: 语句printf("%d", 'F' - 'B');的输出为:4
    B: 语句printf("%c", 'F' - 3);的输出为:C
    C: 语句printf("hello\12world");的输出为:helloworld
    D: 有定义char a=10;语句printf("hello%cworld", a);的输出为:hello10world