在C语言系统中,假设int类型数据占两个字节,则double、long、unsigned int、char类型数据所占字节数分别为( )。A.8,2,4,1B.2,8,4,1C.4,2,8,1D.8,4,2,1
在C语言系统中,假设int类型数据占两个字节,则double、long、unsigned int、char类型数据所占字节数分别为( )。
A.8,2,4,1
B.2,8,4,1
C.4,2,8,1
D.8,4,2,1
相关考题:
C语言中各种基本数据类型的存储空间长度排列为( )A.char≤long≤int≤float≤doubleB.double≤float≤long≤int≤charC.char≤int≤long≤float≤doubleD.float≤int≤long≤char≤double
自动类型转换是按优先关系从低级数据转换成高级数据,规定的优先次序是( )。A.byte, short, char→int→long→float→doubleB.float→int→long→byte, short, char→doubleC.int→long→float→double→byte, short, charD.double→int→float→long→byte, short, char
Java语言中数据类型之间的自动类型转换是由优先关系从低级数据类型转换成高级数据类型,下面选项中自动类型转换优先级由低到高排列正确的是A.char→long→int→double→floatB.char→int→long→double→floatC.char→int→long→float→doubleD.char→int→float→double→long
自动类型转换是按优先关系从低级数据转换成高级数据,规定的优先次序是( )。A.byte,short,char→int→long→float→doubleB.float→int→long→byte,short,char→doubleC.int→long→float→double←byte,short,charD.double→int→folat→long→byte,short,char
在32位系统中,基本数据类型所占字节长度,正确的是:A.char<int<float<doubleB.char<int<double<floatC.char<short<float<intD.char<short<int<double
6、在32位系统中,基本数据类型所占字节长度,正确的是:A.char<int<float<doubleB.char<int<double<floatC.char<short<float<intD.char<short<int<double
【填空题】在Java中,byte类型数据占____个字节,short类型数据占____个字节,int类型数据占____个字节,long类型数据占____个字节。