A.int x[][3]={0}; B.int x[2][3]={{l,2},{3,4},{5,6}}; C.int x[][3]={{l,2,3},{4,5,6}}; D.int x[2][3]={l,2,3,4,5,6I};
A.Char str[]={’\064’}; B.Char str=”kx43”; C.Char str=”; D.Char str[]=”\0”;
A.3.3 B.3.8 C.4.3 D.4.8