问题
单项选择题
在下列语句中,正确的是 ( )
A.static char str[]="China";
B.static char str[];str="China";
C.static char str1[5],str2[]="China";str1=str2;
D.static char str1[],str2[];str2="China";strcpy(str1,str2);
答案
参考答案:A