多项选择题
A.inta[3][]; B.floata(3,4); C.floata(3)(4); D.doublea[][4];
A.inta[2][3]={0}; B.inta[][3]={{1,2},{0}}; C.inta[2][3]={{1,2},{3,4},{5,6}}; D.inta[][3]={1,2,3,4,5,6};
A.数组最小值的下标 B.数组中的最大值 C.数组最大值的下标 D.数组中的最小值