how many bytes is this struct? – how many bytes is pointer to a struct? [closed]

Use the sizeof operator:

printf("%zu", sizeof(struct jump*));

Leave a Comment