A、is, to translate
B、has, to translate
C、is, in translating
D、has, in translating
第1题:
A.strcpy(book->title,”WangTao”)
B.strcpy(book.title,”WangTao”)
C.strcpy(*book.title,”WangTao”)
D.strcpy((*book)->title,”WangTao”)
第2题:
当Book1被Book2盖住时,请激活Book1。
第3题:
第4题:
A.BOOK*x=newbook
B.BOOKx={"C++Programming", 27.0}
C.BOOK*x=newBOOK
D.BOOK*x=book
第5题:
第6题:
假定有“struct BOOK{char title[40]; float price;} book;”,则正确的语句为()。
Astruct BOOK x= &book;
Bstruct BOOK *x=&book;
Cstruct BOOK x=calloc(BOOK);
Dstruct BOOK *x=BOOK;