摘要: #include #include void main() { char *strcopy(char *target, char *source); char a[] = "hello world~"; strcopy(a,"thanks!"); printf("%s\n",a); getchar(); } char *strcopy(char *t... 阅读全文
posted @ 2018-04-02 14:51 一梦、 阅读(926) 评论(0) 推荐(0) 编辑