问答详情
源自: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("%f\n",d);    return 0;    }

为什么显示运行成功,输入错误

提问者:qq_慕瓜7474217 2019-02-24 17:07

个回答

  • 努力_li
    2019-02-24 19:08:33
    已采纳

    最后一个输出格式应该是:printf("%lf\n",d);

    应该是这吧