填空题

下面程序的输出结果是 【12】
char b[]="ABCD";
main()
char b[30];
strcpy(&b[0],"GH");
strcpy(&b[1],"GH”);
strcpy(&b[2],"GH");
printf("%s\n",B) ;

【参考答案】

GGGH