gpt4 book ai didi

c - 使用指针作为函数参数的字符串复制。

转载 作者:太空宇宙 更新时间:2023-11-04 07:11:50 26 4
gpt4 key购买 nike

#include <stdio.h>
void stringcopy(char *, char *);

int main(void)
{

char *a="akash";
char *b;
stringcopy(a,b);
printf("%s",b);//why this is null?
return 0;
}
void stringcopy(char*a,char*b)
{
b=a;
printf("%s\n",b);// it is not null
}

Blockquote in a function stringcopy ,i am getting output right. but after call i am getting null in main.why it is happening?please explain?

最佳答案

它在 stringcopy 返回后不起作用,因为在 C 函数中参数是按值传递的,所以 b 将保持不变(赋值是在 ab)。它仅在函数内修改。了解 call stack .

ab 的地址传递给 stringcopy 并在函数内部取消引用它们。

#include <stdio.h>

void stringcopy(char**, char**);

int main(void)
{
char *a = "akash";
char *b;
stringcopy(&a, &b);
printf("%s\n",b);
return 0;
}

void stringcopy(char** a,char** b)
{
*b = *a;
printf("%s\n", *b);
}

请注意,这只会使 b 指向存储字符串文字 "akash" 的内存区域,因此这并不是完全复制字符串。

关于c - 使用指针作为函数参数的字符串复制。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27771745/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com