63. 下列 C++語言程式片段中,那些可以正確執行?(A)char s1[10]; s1="Ctest";(B)char s3[20]="Ctest"; (C)char s2[]={'C', 't', 'e', 's', 't','\n'};(D)char *s4="Ctest\n"。