网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

Tubro C中long int类型变量所占的字节数是______。

A.1

B.2

C.3

D.4


参考答案

更多 “ Tubro C中long int类型变量所占的字节数是______。A.1B.2C.3D.4 ” 相关考题
考题 变量a所占内存字节数是______。 union U { char st[4]; int i; long 1; }; struct A { int c; union U u; }a;A.4B.5C.6D.8

考题 在C语言系统中,假设int类型数据占两个字节,则double、long、unsigned int、char类型数据所占字节数分别为( )。A.8,2,4,1B.2,8,4,1C.4,2,8,1D.8,4,2,1

考题 VC6.0中int类型变量所占字节数是( )。A.1B.2C.3D.4

考题 变量a所占的内存字节数是______。 union U { char st[4]; int i; long 1; }; struct A { int c; union U u; }a;A.4B.5C.6D.8

考题 变量a所占的内存字节数是______。 union U { char st[4]; int i; long 1; }; struct A { int c; union U u; }a;A.4B.5C.6D.8

考题 以下代码中变量result的可能类型有哪些?byte b = 11;short s = 13;result = b * ++s; A.byte, short, int, long, float, doubleB.boolean, byte, short, char, int, long, float, doubleC.byte, short, char, int, long, float, doubleD.byte, short, charE.int, long, float, double

考题 11、若有以下定义,则变量m所占的内存字节数是4个。 (假如:char占1个字节,int占2个字节,long占4个字节) union U { char a[4], int i; long l; }; struct S { int c; union U u; }m;

考题 假定int类型变量占用4个字节,若有定义:int[] x = new int[] {1,2,3,4,5,6}; 则数组x在内存中所占字节数是()。A.4B.12C.24D.48

考题 C51中变量进行混合运算时,数据类型转换的规则为:A.bit->char->int->long->floatB.bit->int->char->long->floatC.bit->int->long->char->floatD.bit->float->int->long->char