摘要: #include #include void copy_str(char* from, char* to){ for (; *from != '\0'; from++,to++){ *to = *from; } *to = '\0';//注意最后要记得拷贝'\0' return; } // ++ 优先级高 先执行*to = * from 然... 阅读全文
posted @ 2017-08-08 19:21 看雪。 阅读(2109) 评论(0) 推荐(0)