A.x.a B.x->a C.x(a) D.x{a}
单项选择题假定一个结构类型的定义为“structD{inta;D*next;};”,则该类型的长度为()。
A.4 B.8 C.12 D.16
单项选择题假定一个结构类型的定义为“structA{inta,b;doublec;};”,则该类型的长度为()。
A.8 B.10 C.12 D.16
单项选择题在结构类型的定义中,不同数据成员的定义项之间采用的分隔符是()。
A.句点 B.冒号 C.分号 D.逗号
单项选择题假定有“structBOOK{chartitle[40];floatprice;}book;”,则正确的语句为()。
A.struct BOOK x= &book; B.struct BOOK *x=&book; C.struct BOOK x=calloc(BOOK); D.struct BOOK *x=BOOK;
单项选择题假定有“structBOOK{chartitle[40];floatprice;};structBOOKbook;”,则不正确的语句为()。
A.struct BOOK *x=malloc(book); B.struct BOOK x={"C++ Programming",27.0}; C.struct BOOK *x=malloc(sizeof(struct BOOK)); D.struct BOOK *x=&book;