gpt4 book ai didi

c - 指向结构和打印的指针

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

我一直在学习结构,我已经找到了指向结构的指针,而我目前正为此苦苦挣扎。

我有这段代码:

struct point {
int x;
int y;
} *ptr;

ptr->x = 8;
ptr->y = 8;

运行它会出现段错误。我想要做的是将 8 的值分配给 x/y,据我所知,ptr 指向它。

最佳答案

您的ptr 是一个指向struct point 的指针。

但是,没有它指向的结构点

struct point {
int x;
int y;
} *ptr;

struct point pt; // add this...

ptr = &pt; // ...and this.

ptr->x = 8;
ptr->y = 8;

关于c - 指向结构和打印的指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37158333/

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