能把字符串"Hello!"赋给数组b的语句是
char b[10]; strcpy(b, "Hello!");
char b[10] = {'H', 'e', ''', 'l', 'o', '!'};
char b[10] = "Hello!";
char b[10]; b="Hello!";