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

这个赋值是要看顺序的么

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

这样也能成立的话  那么赋值是不是需要顺序的   比如说就不能

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


提问者:树上 2015-06-19 10:35

个回答

  • Perona
    2015-06-19 10:49:00
    已采纳

    嗯哪,是要看顺序的。