gpt4 book ai didi

c - 将结构中的指针设置为 null

转载 作者:行者123 更新时间:2023-11-30 21:01:41 25 4
gpt4 key购买 nike

我想将 Student 结构中的指针 *name*age 设置为 NULL。我不确定如何从 main() 中完成此操作。

typedef struct Student Student;
typedef struct Student{
char *name;
int *age;
} Student;

我想在我的 main 中将上面提到的指针设置为 NULL。

我在 main 中的 Student 声明是:

Student Tom;

我不确定如何将 tom.name 和 tom.age 指针设置为 NULL。

最佳答案

您可以按照以下方式进行操作

Student Tom = { NULL, NULL };

Student Tom = { .name = NULL, .age = NULL };

Student Tom;

Tom.name = NULL;
Tom.age = NULL;

关于c - 将结构中的指针设置为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34911532/

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