I want to know how the memory is allocated when I'm using a pointer to declare my structure.
struct car{
int id;
int age;
};
So if I'm right, for most the compilers, the structure size is 8 bytes because int(4B) x 2 = 8B.
Now the point I don't understand.
//1
struct car *ptr = malloc(sizeof(struct car));
//2
char buffer[4090];
struct car *ptr = buffer;
//3
struct car *ptr = malloc(1);
In these 3 cases the size of the *ptr
is 8 sizeof(*ptr)
. Why?
And how is it represented in the memory?
sizeof(something)
is nothing represented in memory. It is determined at compile time.Since
ptr
is declared as acar*
,sizeof(*ptr)
is for the compiler the size of thecar structure
.This does not depend on the value of ptr or where it is pointing at, even if it is null.
On the other hand,
sizeof(ptr)
(without the star) is the size of a pointer, which depends on the system (i.e. 8 Bytes on a Win 64-bit). In this case, the type of the pointee does not matter.