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

strcpy & memcpy区别

时间:2018-02-01 20:36:20      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:memcpy   mem   一个   sizeof   logs   include   emc   复制   ret   

这两个经常使用的函数,主要区别有:

  1. strcpy 返回值是char *, strcpy(x1, x2); x1 x2必须都是char* 类型
  2. memcpy(x1, x2, sizeof(xx)); memcpy可以复制的类型很多;

如果你使用一个数组指针,则不能使用strcpy, 只能使用memcpy.

#cat aa.c
#include <stdio.h>
#include <string.h>

int main()
{
    char s1[64] = "hello";
    char (*ps1)[64] = &s1;

    printf("ps1:%s\n", ps1);
    char s2[64];

    char (*ps2)[64] = &s2;
    strcpy(ps2, ps1);
    memcpy(ps2, ps1, sizeof(char[64]));

    printf("s2:%s\n", s2);

    return 0;
}

strcpy & memcpy区别

标签:memcpy   mem   一个   sizeof   logs   include   emc   复制   ret   

原文地址:https://www.cnblogs.com/muahao/p/8400583.html

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