以下涉及字符串数组、字符指针的程序段,没有编译错误的是()。A
char* str, name[5];
str = "C/C++";B
char* str, name[6];
name = "Hello";C
char str1[7] = "prog.c", str2[8];
str2 = str1;D
char line[];
line = "//////";
11
这题a明显不对啊,好像都不对啊