摘要: #include #include void str_cpy(char * to, char *from){ while ((*to++ = *from++) != '\0'); return;}int main(){ char a[128]; str_cpy(a,"hello"); printf(... 阅读全文
posted @ 2015-06-15 21:19 张不正 阅读(268) 评论(0) 推荐(0) 编辑
返回顶部