摘要: #include #include#includeusing namespace std;char *catstr(char *a,char *b){char *p=a,*q=b;while(*p) p++;while(*q)*p++=*q++;*p='\0';return a;}int mai... 阅读全文
posted @ 2016-07-03 16:22 弃用博客 阅读(1251) 评论(0) 推荐(0) 编辑