注意:此页面搜索的是所有试题
假定有“struct BOOK{char title[40]; float price;} book;”,则正确的语句为( )。
单选题 (2 分) 2分
A.
struct BOOK x= &book;

B.
struct BOOK *x=&book;

C.
struct BOOK x=calloc(BOOK);

D.
struct BOOK *x=BOOK;

参考答案