strcpy(char x,char x); 查用法void main(){char x[] = "write";char y[] = "read";strcpy(x,y);printf("%s\n", x);}