【单选题】设有如下说明typedef struct{ int number char classdouble score}student则以下选项中,能正确定义结构体数组并赋初值的语句是( )。
A.
student tt[2]={{189,’A’,62},{190,’B’,75}}
B.
student tt[2]={189,’'A',62,190,'B',75}
C.
struct tt[2]={{189,’A’},{190,’B’}}
D.
struct tt[2]={{189,'A',62.5},{190,'B',75.0}}