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

题目内容 (请给出正确答案)
单选题
若已知int类型占两个字节,则下述程序运行结果为()。structst{chara[10];intb;doublec;};printf(""%d/n"",sizeof(structst));
A

8

B

16

C

30

D

20


参考答案

参考解析
解析: 暂无解析
更多 “单选题若已知int类型占两个字节,则下述程序运行结果为()。structst{chara[10];intb;doublec;};printf(""%d/n"",sizeof(structst));A 8B 16C 30D 20” 相关考题
考题 在C语言中,说明无符号整型用( ) A.intB.doubleC.signed intD.unsigned int

考题 若下面程序运行时输出结果为1, A, 10.12, B, 3.5请将程序补充完整 。#includeusing namespace std;int main(){void test(int, char,double 【 8 】 );test(1,'A',10.1);test(2,'B');return 0;}void test(int a, char b, doubleC .{cout}

考题 若有下列说明和语句,已知int型数据占2个字节,则下列语句的输出结果是( )。stmct st{char a[15];intb;double c;};printf("%d",sizeof(structSt));A.15B.8C.25D.2

考题 下列( )数据类型不是数值类型。A.intB.doubleC.booleanD.short

考题 有以下程序includestdio.hint a=5;void fun(intB){int a=10;a+=b;pfinff(“%d”,A);}main( ){int e=20;fun(C);a+=e;printf(“%d\n”,A);}程序运行后的输出结果是【 】。

考题 若有以下类型说明语句:chara;intb;floatc;doubled;则表达式a*b-2*d+c的结果类型为() A.floatB.charC.intD.double

考题 下面语句返回的数据类型是什么? (short)10/ 10.2*2;() A.intB.doubleC.floatD.short

考题 假定int类型变量占用两个字节,有定义:int x[10]={0,2,4};,则数组x在内存中占字节数是A.3B.6C.10D.20

考题 已知一个运行正常的程序中有下面两个语句:int*p1,p2a;p1=b;由此可知,变量a和b的类型分别是A.int和intB.int*和intC.int和int*D.int*和int*

考题 假定int类型变量占用两个字节,其有定义int x[10] ={0,2,4};,则数组x在内存中所占字节数是A.3B.6C.10D.20

考题 现有定义int a;double b;float c;char k;,则表达式a/b+c-k值的类型为A.intB.doubleC.floatD.char

考题 假定int类型变量占用两个字节,若有定义:int x[10]={0,2,4);,则数组x在内存中所占字节数是______。A.3B.6C.10D.20

考题 已知chara;intb;floatC;doubled;则表达式a*b+c-d的结果为( )。A.doubleB.intC.floatD.char

考题 若有如下说明,且int类型占两个字节,则正确的叙述为( )。 struct st {int a; int b[2]; }a;A.结构体变量a与结构体成员a同名,定义是合法的B.程序只在执行到该结构体时才为结构体st分配存储单元C.程序运行时为结构体st分配8字节存储单元D.类型名struct st可以通过extern关键字提前引用

考题 设有定义int x; float y; , 则10+x+y值的数据类型是A.intB.doubleC.floatD.不确定

考题 若int类型数据占两个字节,则下列语句 int k=-1; printf("%d,%u\n",k,k); 的输出为( )A.-1,-1B.-132,767C.-132,768D.-165,535

考题 若有以下定义: chara;intb; floate;doubled;. 则表达式a*b+b-c值的类型为( )。A.FloatB.intC.charD.double

考题 在以下程序段中,已知血型数据占两个字节,则输出结果是 union un { int i; double y; } struct st { char a[10]; union un b; }; printf("%",sizeof(struct st));A.14B.18C.20D.16

考题 C语言程序中,若函数无返回值,则应该对函数说明的类型是( )。 A.intB.doubleC.charD.void

考题 若int类型数据占两个字节,则下列语句的输出结果为( ) int x=-1; printf("%u\n",x);A.-1B.32767C.65535D.65536

考题 一个int类型的常量和一个byte类型的常量做加法,则其结果的类型为( )。A.intB.byteC.charD.long

考题 设C语言中,int类型数据占2个字节,则float类型数据占()个字节。A、1B、2C、8D、4

考题 在Java语言中,已知a为int型,b为double型,c为float型,d为char型,则表达式a+bc-d/a的结果类型为()。A、intB、doubleC、floatD、char

考题 若int类型数据占两个字节,则下列语句的输出为(). int k=-1; printf("%d,%u/n",k,k);(u无符号十进制整数)A、-1,-1B、-1,32767C、-1,32768D、-1,65535

考题 若已知int类型占两个字节,则下述程序运行结果为()。structst{chara[10];intb;doublec;};printf(""%d/n"",sizeof(structst));A、8B、16C、30D、20

考题 在C程序中,若对函数类型未加说明,则函数的隐含类型为()A、intB、doubleC、voidD、char

考题 设C语言中,int类型数据占2个字节,则short类型数据占().A、1个字节B、2个字节C、4个字节D、8个字节