码迷,mamicode.com
首页 > 编程语言 > 详细

c语言的字符串拷贝函数的精简

时间:2015-06-15 21:54:39      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

#include <stdio.h>
#include <string.h>
void str_cpy(char * to, char *from)
{
    while ((*to++ = *from++) != ‘\0‘);
    return;
}
int main()
{
    char a[128];
    str_cpy(a,"hello");
    printf("a:%s\n",a);
    return 0;
}

c语言的字符串拷贝函数的精简

标签:

原文地址:http://www.cnblogs.com/zhanghaha/p/4579236.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!