首页 > 代码库 > 功能:赋值时类型自动的转换

功能:赋值时类型自动的转换

功能:赋值时类型自动的转换

#include<stdio.h>

main()

{

    int a,x;

    float f;

    a=3.9;

    f=12;

    x=‘A‘;

   printf("a=%d,f=%f,x=%d\n",a,f,x); 

}

功能:赋值时类型自动的转换 - 文豪 - WELCOME MY BLOG.

 


本文出自 “努力奋斗,互相提高” 博客,请务必保留此出处http://c10086.blog.51cto.com/6433044/1413855