A. float b[2][2]={0.1,0.2,0.3,0.4}; B. int a[][2]={{1,2},{3,4}}; C. int a[2][]= {{1,2},{3,4}}; D. float a[2][2]={0};
A. 对 B. 错