这个每一句什么意思,求助各位大佬void append(char *from,char *to) { for(;*from;from++); for(;*to;) *from++=*to++; *from=0; }