gpt4 book ai didi

字符指针和 printf 2

转载 作者:太空宇宙 更新时间:2023-11-04 06:01:30 24 4
gpt4 key购买 nike

请就以下输出告诉我:

int main() 
{

char ***x = "jjhljlhjlhjl";

char ***q = "asddfwerwerw";

**q = **x;

printf("x:%s\n",x);
printf("q:%s\n",q);

}

输出:1 段错误

最佳答案

这是你应该拥有的:

#include <stdio.h>

int main(void) {

char *x = "jjhljlhjlhjl";

char *q = "asddfwerwerw";

q = x;

printf("x:%s\n",x);
printf("q:%s\n",q);

return 0;

}

如果要初始化一个字符串,使用char *x不要使用 ***x。这意味着指向指向 char 的指针的指针。希望对您有所帮助。

关于字符指针和 printf 2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18994855/

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