A-A+
若有以下的说明 对初值中整数2的正确引用方式是 static struct {char ch
问题详情
若有以下的说明,对初值中整数2的正确引用方式是 static struct {char ch; int i; double x; } a[2][3]={{{"a",1,3,45},{"b",2,7,98},{"c",31,93}}};
A.a[0][1].ch
B.a[0][1].i
C.a[0][0].i
D.a[0][2].i请帮忙给出正确答案和分析,谢谢!
参考答案
正确答案:B