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

用VC++6.0编译没错啊

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

提问者:有点甜的农夫 2016-07-18 14:08

个回答

  • Leo_nard
    2016-07-18 15:44:00
    已采纳

    赋值式后面要带英文半角的分号

  • 丿记灬忆
    2016-07-18 14:20:11

    c后面没带;