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

my_strcpy

时间:2015-04-09 17:24:20      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:c

#include<stdio.h>
void my_strcpy(char* dest,const char* str)
{
    if(NULL != dest || NULL != str)
    {
        while(((*dest++) = (*str++)))//注意运算的优先级
        {
            ;
        }
    }
   *dest = '\0';
}

int main()
{
    
    char a[] = "abc";
    char b[] = "def";
    my_strcpy(a,b);
    printf("%s\n",a);
    //printf("%s\n",my_strcpy(a,b));错误的用法,先调用再输出
    //printf("%s\n",my_strcpy("abc", "def"));
    return 0;
}

my_strcpy

标签:c

原文地址:http://blog.csdn.net/cherry_ermao/article/details/44962273

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