(单选题)
struct test{ Char a[3]; Int b[4]; Short c[5]; }; 一个test类型数据占用()个字节的空间。
A28
B29
C30
D32
正确答案
答案解析
略
相似试题
(单选题)
若有下面的说明和定义,则sizeof(structtest)的值是()
(单选题)
设有说明语句chara=’/n’;,则变量a()
(单选题)
若有定义chara4[]=newchar[5];则length的值为()
(单选题)
若有定义chara[]=newchar[5];则a.length的值为()
(单选题)
设已定义chara[10]和intj,则下面输入函数调用中错误的是()
(单选题)
若定义chara[80]=”windows”,b[]=”95”;语句printf(”%s”,strcat(a,b));输出结果是()
(单选题)
若定义chara[80]=”95”,b[]=”windows”;,语句printf(”%s”,strcpy(a,b));的输出结果为()
(填空题)
已知:chara=’a’,b=’b’,c=’c’,i;则表达式i=a+b+c的值为()。
(单选题)
若已知int类型占两个字节,则下述程序运行结果为()。structst{chara[10];intb;doublec;};printf(""%d/n"",sizeof(structst));
(单选题)
程序段 chara[]=“abdcacdef”; char*p=a;intn=0; while(*p!=‘/0’){n++;p++;}结果中,n的值是()