问答详情
源自:2-8 自动类型转换

为什么不加引号

#include <stdio.h>
int main()
{
    char c = 'a';
    int n =  c;       //将c赋值给n
    float f =  c;     //将c赋值给f
    double d =   c;   //将c赋值给d
    printf("%d\n",n);
    printf("%f\n",f);
    printf("%lf\n",d);
    return 0;   
}



提问者:慕工程5433360 2019-09-12 20:08

个回答

  • qq_宝慕林3464050
    2019-09-23 08:16:36

    只有单个字符才用加引号

  • 慕工程5433360
    2019-09-12 20:08:58

    第4,5,6,行的c为什么不需要加引号