在以下程序段中,已知int型数据占两个字节,则输出结果是()。unionun{inti;doubley;}structst{chara[10];unionunb;}printf(“%d”,sizeof(structst));A)14B)18C)20D)16
在以下程序段中,已知int型数据占两个字节,则输出结果是()。unionun{inti;doubley;}structst{chara[10];unionunb;}printf(“%d”,sizeof(structst));A)14B)18C)20D)16
已知:structst{intn;structst*next;};staticstructsta[3]={1,&a[1],3,&a[2],5,&a[0]},*p;如果下述语句的显示是2,则对p的赋值是()printf("%d",++(p->next->n));
已知:structst{intn;structst*next;};staticstructsta[3]={1,&a[1],3,&a[2],5,&a[0]},*p;如果下述语句的显示是2,则对p的赋值是()printf("%d",++(p->next->n));
以下程序的输出结果是().structst{intx;int*y;}*p;int...f("%d\n",++(p->x));}
以下程序的输出结果是().structst{intx;int*y;}*p;int...f("%d\n",++(p->x));}
以下程序的输出结果是().structst{intx;int*y;}*p;intdt[4]={10,20,30,40};structstaa[4]={50,
以下程序的输出结果是().structst{intx;int*y;}*p;intdt[4]={10,20,30,40};structstaa[4]={50,
下面程序的输出结果为()structst{intx;int*y;}*p;intd...("%d\n",++(*p->y));}
下面程序的输出结果为()structst{intx;int*y;}*p;intd...("%d\n",++(*p->y));}
设有如下定义:structstru{intx;inty;};structst{intx;floaty;structstru*p;}st1,*p1=&st;以下引用正确的是____。
设有如下定义:structstru{intx;inty;};structst{intx;floaty;structstru*p;}st1,*p1=&st;以下引用正确的是____。
中国大学MOOC: 设有以下结构类型,并且结构数组student中的元素都已有值,若要将这些元素写到硬盘文件fp中,以下形式错误的是structst{charname[8];intnum;floats[4];}student[50];
中国大学MOOC: 设有以下结构类型,并且结构数组student中的元素都已有值,若要将这些元素写到硬盘文件fp中,以下形式错误的是structst{charname[8];intnum;floats[4];}student[50];
下面程序的输出结果为()structst{intx;int*y;}*p;intdt[4]={10,20,30,40};structstaa[4]={50,&dt[0],60,&dt[1],70,&dt[2],80,&dt[3]};main(){p=aa;printf("%d",++p->x);printf("%d",(++p)->x);printf("%d",++(*p->y));}
下面程序的输出结果为()structst{intx;int*y;}*p;intdt[4]={10,20,30,40};structstaa[4]={50,&dt[0],60,&dt[1],70,&dt[2],80,&dt[3]};main(){p=aa;printf("%d",++p->x);printf("%d",(++p)->x);printf("%d",++(*p->y));}
【单选题】有以下程序段structst{intx;int*y;}*pt;inta[]={1,2},b[]={3,4};structstc[2]={10,a,20,b};pt=c;以下选项中表达式的值为11的是() A. ++pt->x B. pt->x C. *pt->y D. (pt++)->x
【单选题】有以下程序段structst{intx;int*y;}*pt;inta[]={1,2},b[]={3,4};structstc[2]={10,a,20,b};pt=c;以下选项中表达式的值为11的是() A. ++pt->x B. pt->x C. *pt->y D. (pt++)->x
中国大学MOOC: 以下程序的输出是()。structst{intx;int*y;}*p;intdt[4]={10,20,30,40};structstaa[4]={50,&dt[0],60,&dt[0],60,&dt[0],60,&dt[0]};intmain(){p=aa;printf("%d ",++(p->x));}
中国大学MOOC: 以下程序的输出是()。structst{intx;int*y;}*p;intdt[4]={10,20,30,40};structstaa[4]={50,&dt[0],60,&dt[0],60,&dt[0],60,&dt[0]};intmain(){p=aa;printf("%d ",++(p->x));}