A.printf(“%s”,c); B.for(j=0;j<8;j++)printf(“%c”,c[j]); C.puts(c); D.for(j=0;j<8;j++)puts(c[j]);
A.charstr[5]="hello"; B.charstr[]={’h’,’e’,’l’,’l’,’o’,’\0’}; C.charstr[5]={"hi"}; D.charstr[100]="";
A.6 B.9 C.5 D.無法統(tǒng)計