其他分享
首页 > 其他分享> > 数据类型

数据类型

作者:互联网

1.若要声明一个无符号整型变量t,则正确的声明形式是“unsigned int t"

2.若将实型常数1.5储存在内存中,它占用8个字节

3.若有定义“int i=7;float x=3.1415;double y=3;",表达式”i+'a'*x+i/y"值的类型为double型

4.若有定义“char a=0;int b=1;float c=2;double d=3;"则表达式”c=a+b+c+d"的值为float型

5.已有声明“double=3.5",表达式”(int)x+x"的类型为double型

标签:若有,int,double,float,数据类型,声明,表达式
来源: https://www.cnblogs.com/520xjl/p/15855732.html