A. int s[2][3]={0}; B. int s[][3]={1,2,3,4,5}; C. int s[2][3]={{1,2},{3,4},{5,6; D. int s[][3]={{1,2},{0;
A. 可在程序的运行阶段得到初值0 B. 可在程序的编译阶段得到初值0 C. 不能得到确定的初值 D. 可在程序的编译或运行阶段得到初值0