A.struct BOOK x= &book; B.struct BOOK *x=&book; C.struct BOOK x=calloc(BOOK); D.struct BOOK *x=BOOK;
A.x=pa[3]; B.x=*(a+3); C.x=a[3]; D.x=*pa+3;