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

C语言入门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;    
}

这里为什么运行结果会是97呢?明明没有任何数据类型定义为97的呀、、

提问者:Johnnylo 2016-02-12 18:01

个回答

  • Stitch.top
    2016-02-12 19:20:08
    已采纳

    在ASCII码中,字符'a'就等于十进制数97.