gpt4 book ai didi

c - sizeof(struct tag *) 和 sizeof(struct tag) 之间的区别

转载 作者:行者123 更新时间:2023-11-30 18:22:43 26 4
gpt4 key购买 nike

struct student_simple
{
int rollno;
char *name;
};

之间的区别

struct student_simple *s2 = malloc(sizeof(struct student_simple *)); 

struct student_simple *s3 = malloc(sizeof(struct student_simple ));

我可以毫无问题地使用 s2 和 s3,但是当我检查 gdb 中的大小时

gdb$ p sizeof(struct student_simple) gives 16 

gdb$ p sizeof(struct student_simple *) gives 8

最佳答案

What is the difference between [...] and [...]?

星号。如果您尝试使用 s2 来存储 student_simple 结构,您将得到未定义的行为。

How can a malloc of size 8 bytes store the student_simple structure as in s2?

不能。为什么你认为可以?

关于c - sizeof(struct tag *) 和 sizeof(struct tag) 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16162057/

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