不能把字符串:Hello!赋给数组b的语句是
char str[10]= {’H', ’e’, ’l’, ’l', 'o’, ’! ’};
char str[10];str="Hello!”;
char str[10];strcpy(str,"Hello!”);
char str[10]=”Hello!”;
发表评论