数组声明格式是什么

数组声明格式为 数据类型 数组名[行数][列数]

int a[3][2] 即int类型 3行2列的数组a

a[0][0] a[0][1]

a[1][0] a[1][1]

a[2][0] a[2][1]

具体数值是:

1 2

3 4

5 6

故答案是B。