小编som*_*ers的帖子

C - 使用指针将一个字符数组的内容复制到另一个字符数组

我正在尝试编写一个简单的 C 函数来使用指针算法将一个 char 数组的内容复制到另一个。我似乎无法让它工作,你能告诉我哪里出错了吗?

#include <stdio.h>
#include <stdlib.h>

void copystr(char *, const char *);

int main()
{

    char hello[6] = "hello";
    const char world[6] = "world";

    copystr(&hello, &world);

    return 0;
}

    void copystr(char *str1, const char *str2)
    {
        *str1 = *str2;                 //copy value of *str2 into *str1
        printf("%s %s", *str1, *str2); //print "world" twice
    }
Run Code Online (Sandbox Code Playgroud)

帮助表示赞赏,谢谢。

编辑:这是工作代码:

#include <stdio.h>
#include <stdlib.h>

void copystr(char *, const char *);

int main()
{

    char hello[6] = "hello";
    const char world[6] = "world"; …
Run Code Online (Sandbox Code Playgroud)

c arrays pointers char

5
推荐指数
1
解决办法
1687
查看次数

标签 统计

arrays ×1

c ×1

char ×1

pointers ×1