The overall goal of the book is to help bridge the gap between research and teaching.()
第1题:
A.strcpy(book->title,”WangTao”)
B.strcpy(book.title,”WangTao”)
C.strcpy(*book.title,”WangTao”)
D.strcpy((*book)->title,”WangTao”)
第2题:
假定有“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;
第3题:
下面四个函数中,哪个是正确的帮助函数?
A.Help()
B.HELP()
C.help()
D.以上均正确
第4题:
A.BOOK*x=newbook
B.BOOKx={"C++Programming", 27.0}
C.BOOK*x=newBOOK
D.BOOK*x=book
第5题:
下面的程序中,条件语句中的哪个条件会最先被计算? if finalscore>=95 and (research='A' or (grade='A' and present='A')) then finalGrades='A+';
A.finalscore>=95
B.research='A'
C.grade='A' and present='A'
D.research='A' or (grade='A' and present='A')
第6题:
下列属于构词现象的是()
A.英语“book”加“s”变成“books”
B.汉语中“桌”加“子”变成“桌子”
C.英语“help”加“ed”变成“helped”
D.汉语的“同学”加“们”变成“同学们”