摘要: 问题:字符串拼接 strcat方法1:开辟新空间,存放结果:#include #include #include #include char* _strcat(char* str1, char* str2){ assert(str1 != NULL && str2 != NULL); char*... 阅读全文
posted @ 2014-08-21 18:47 McQueen1987 阅读(577) 评论(0) 推荐(0)