以下代码工作正常:
#include <stdio.h>
#include <stdlib.h>
int main()
{
struct node{
int a, b, c, d, e;
};
struct node *ptr = NULL;
printf("Size of pointer ptr is %lu bytes\n",sizeof (ptr));
printf("Size of struct node is %lu bytes\n",sizeof (struct node));
ptr = (struct node*)malloc(sizeof (ptr)); //Line 1
// ptr = (struct node*)malloc(sizeof (struct node)); //Line 2
ptr->a = 1; ptr->b = 2; ptr->c = 3; ptr->d = 4; ptr->e = 5;
printf("a: %d, b: %d, c: %d, d: %d, e: %d\n",
ptr->a,ptr->b,ptr->c,ptr->d,ptr->e);
return 0;
}
当遵守为:
gcc -Wall file.c
我的问题是:为什么这很好?
malloc
分配在其参数中指定的字节数。这sizeof ptr
是我的 64 位 linux 机器上的 8 个字节。我以为malloc
会提供 8 个字节,但它是如何访问所有变量 a、b、c、d、e 的?是只有 gcc 还是我缺少标准 C 的东西?
据我所知,应该有“第 2 行”而不是“第 1 行”,但其中任何一行都可以正常工作。为什么?