gpt4 book ai didi

c - 如何将字符串分配给位于 C 结构中的 char 数组?

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

<分区>

这是我希望它编译的代码,但它没有:

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

typedef struct turtle {
char name[20];
int age;
} turtle;

int main(){

turtle koray = {"koray",25};
turtle halim;

halim.name = "halim"; // This line will cause in compile error.
halim.age = 25;

printf("%s\n",koray.name);
printf("%s\n",halim.name);

}

我做错了什么?

这成功遵守,但打印垃圾:

*(halim.name) = "halim";

垃圾我的意思是:

koray
p

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