第11章 結(jié)構(gòu)體練習(xí)題公開(kāi)課一等獎(jiǎng)省優(yōu)質(zhì)課大賽獲獎(jiǎng)?wù)n件_第1頁(yè)
第11章 結(jié)構(gòu)體練習(xí)題公開(kāi)課一等獎(jiǎng)省優(yōu)質(zhì)課大賽獲獎(jiǎng)?wù)n件_第2頁(yè)
第11章 結(jié)構(gòu)體練習(xí)題公開(kāi)課一等獎(jiǎng)省優(yōu)質(zhì)課大賽獲獎(jiǎng)?wù)n件_第3頁(yè)
第11章 結(jié)構(gòu)體練習(xí)題公開(kāi)課一等獎(jiǎng)省優(yōu)質(zhì)課大賽獲獎(jiǎng)?wù)n件_第4頁(yè)
第11章 結(jié)構(gòu)體練習(xí)題公開(kāi)課一等獎(jiǎng)省優(yōu)質(zhì)課大賽獲獎(jiǎng)?wù)n件_第5頁(yè)
已閱讀5頁(yè),還剩4頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、以下程序輸出結(jié)果是AA)0B)1C)3D)6main(){structcmp{intx;inty;}cnum[2]={1,3,2,7};printf(“%d\n”,cnum[0].x/cnum[1].y*cnum[1].x);}2、依據(jù)以下定義,能輸出字母M語(yǔ)句是DA)printf("%c\n",class[3].name);B)printf("%c\n",class[3].name[1]);C)printf("%c\n",class[2].name[1]);D)printf("%c\n",class[2].name[0]);structperson{charname[9];intage;};structpersonclass[10]={"John",17,"Paul",19,"Mary",18,"Adam",16,};3、有以下說(shuō)明和定義語(yǔ)句structstudent{intage;charnum[8];};structstudentstu[3]={{20,"01"},{21,"02"},{10\9,"03"}};structstudent*p=stu;以下選項(xiàng)中引用結(jié)構(gòu)體變量組員表示式錯(cuò)誤是DA)(p++)->numB)p->numC)(*p).numD)stu[3].age4.若有以下說(shuō)明和語(yǔ)句,則值為6表示式是DA)p++->nB)p->n++C)(*p).n++D)++p->nstructst{intn;structst*next;};structsta[3],*p;a[0].n=5;a[0].next=&a[1];a[1].n=7;a[1].next=&a[2];a[2].n=9;a[2].next='\0';p=&a[0];6.設(shè)有以下定義: structsk {inta; floatb;}data,*p; 若有p=&data;則對(duì)data中a域正確引用是(B)。 A.(*p).data.aB.(*p).aC.p->data.aD.p.data.a5.有以下程序輸出結(jié)果是(B

)。#include<stdio.h>structstu{intnum; charname[10]; intage;};voidfun(structstu*p){print("%s\n",(*p).name);}voidmain(){structstustudents[3]={{9801,"zhang",20},{9802,"Wang",19},{9803,"zhao",18}};fun(students+2);} A.ZhangB.ZhaoC.WangD.18

7.下面程序輸出結(jié)果為(C) #include<stdio.h> 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\n",++p->x); printf("%d\n",(++p)->x); printf("%d\n",++(*p->y)); } A.10B.50C.51D.60 20606070 20212131

9.有以下程序其運(yùn)行結(jié)果是(C)。#include<stdio.h>structst{intx,y;}data[2]={1,10,2,20};voidmain(){structst*p=data; printf("%d,",p->y); printf("%d\n",(++p)->x);}A.10,1 B.20,1 C.10,2 D.20,28.下面結(jié)構(gòu)體定義語(yǔ)句中,錯(cuò)誤是(B)。A.structord B.structord{ {intx; intx;inty; inty;intz; intz;}; }structorda; structorda;C.structordD.struct{{intx; intx;inty; inty;intz; intz;}a; }a;10.設(shè)有以下說(shuō)明語(yǔ)句:structex{intx;floaty;charz;}example;則下面敘述中不正確是_____B___。A)struct是結(jié)構(gòu)體類型關(guān)鍵字 B)example是結(jié)構(gòu)體類型名C)x、y、z都是結(jié)構(gòu)體組員名 D)structex是結(jié)構(gòu)體類11.設(shè)有以下定義:structss{charname[10];intage;charsex;}std[3],*p=std;下面各輸入語(yǔ)句中錯(cuò)誤是______B__。A)scanf("%d",&(*p).age);B)scanf("%s",&);C)scanf("%c",&std[0].sex);D)scanf("%c",&(p->sex));13.C語(yǔ)言若有以下定義:

union

data

{int

i;

char

ch;

doublef;

}b;則共用體變量b占用內(nèi)存字節(jié)數(shù)是:CA.1

B.2

C.8

D.1112.有以下程序:structs{intx,y;}data[2]={10,100,20,200};main(){structs*p=data;printf("%d\n",++(p->x));}程序運(yùn)行后輸出結(jié)果是_______11_。14.C語(yǔ)言共用體類型變量在程序執(zhí)行期間:BA.全部組員一直駐留在內(nèi)存中

B.只有一個(gè)組員駐留在內(nèi)存中C.部分組員駐留在內(nèi)存中

D.沒(méi)有組員駐留在內(nèi)存中15.設(shè)有以下說(shuō)明,則下面敘述不正確是:C

union

data

{int

i;

char

c;

floatf;

}un;A.un所占內(nèi)存長(zhǎng)度等于組員f長(zhǎng)度B.un地址和它各組員地址都是同一地址C.un能夠作為函數(shù)參數(shù)D.不能對(duì)un賦值,不能在定義un時(shí)對(duì)它初始化16.以下對(duì)C語(yǔ)言中共用體類型數(shù)據(jù)敘述

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論