字符串的赋值 char *t = "title"; char *s; s = t; 没有产生新的字符串,指针指向了同一个地方 字符串的输入输出——%s ·scanf只能读一个单词 char string [8];