判断题
A.float b[2][2]={,,,}; B.int a[][2]={{1,2},{3,4}}; C.int a[2][]={{1,2},{3,4}}; D.float a[2][2]={0};
A.char str[]="hello"; B.char str[100]="hello"; C.char str[]={’h’,’e’,’l’,’l’,’o’}; D.char str[]={’hello’};