摘要: char * strcpy(char *to, const char *from) { char *save = to; for (; (*to = *from) != '\0'; ++from, ++to); return(save); } char * strncpy ( char * dest 阅读全文
posted @ 2017-07-11 10:07 Tsunami_lj 阅读(500) 评论(0) 推荐(0) 编辑