码迷,mamicode.com
首页 > 其他好文 > 详细

自定义strcpy函数

时间:2014-10-14 13:14:09      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:自定义实现复制函数

自定义实现复制函数

<span style="font-size:18px;">/strcpy函数  
void strCpy1(char dest[], char source[])  
{  
    int i = 0;  
    while (source[i] != ‘\0‘) {  
        dest[i] = source[i];  
        i++;  
    }  
    dest[i] = ‘\0‘;  
}  
void strCpy2(char *dest, char *source)  
{  
    while ((*dest++ = *source++) != ‘\0‘) {  
    }  
}  
//strlen函数  
unsigned long strLen(char str[])  
{  
    unsigned long length = 0;  
    int i = 0;  
    while (str[i] != ‘\0‘) {  
        length++;  
        i++;  
    }  
    return length;  
}  
</span>


自定义strcpy函数

标签:自定义实现复制函数

原文地址:http://9217856.blog.51cto.com/9207856/1563751

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