up vote 12 down vote favorite
share [g+] share [fb]

I'm looking for a piece of code that can tell me the offset of a field within a structure without allocating an instance of the structure.

IE: given

struct mstct {
    int myfield;
    int myfield2;
};

I could write:

mstct thing;
printf("offset %lu\n", (unsigned long)(&thing.myfield2 - &thing));

And get "offset 4" for the output. How can I do it without that "mstct thing" declaration/allocating one?

I know that &<struct> does not always point at the first byte of the first field of the structure, I can account for that later.

link|improve this question

67% accept rate
feedback

3 Answers

up vote 30 down vote accepted

How about the standard offsetof() macro (in stddef.h)?

Edit: for people who might not have the offsetof() macro available for some reason, you can get the effect using something like:

#define OFFSETOF(type, field)    ((unsigned long) &(((type *) 0)->field))
link|improve this answer
Not quite what I wanted, because I don't have stddef.h, but it does answer my question with: #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) – davenpcj Sep 26 '08 at 21:21
1  
Wow - no stddef.h? Just out of curiosity, could I ask what you're using? – Michael Burr Sep 26 '08 at 21:25
It's in the C99 standard, so I'd suggest getting a new compiler. – wnoise Sep 26 '08 at 21:27
more than that - it's been in C since ANSI C89. I have no idea how common (or uncommon) it was pre-standard. – Michael Burr Sep 26 '08 at 21:29
I once had a C compiler that had offsetof() defined in stddef.h with the zero trick, but it also didn't allow the use of zero as a base address. (Long time ago - 1989, or thereabouts.) Workaround was to change 0 to 1024 instead. – Jonathan Leffler Sep 27 '08 at 5:17
feedback

printf("offset: %d\n", &((mstct*)0)->myfield2);

link|improve this answer
feedback

Right, use the offsetof macro, which (at least with GNU CC) is available to both C and C++ code:

offsetof(struct mstct, myfield2)
link|improve this answer
offsetof() has been in standard C/C++ since the first ANSI C89 standard. Every compiler should have it, unless you're using something seriously ancient. Even then it could be cobbled together using ugly casting & pointer arithmetic. – Michael Burr Sep 26 '08 at 21:23
Agreed - I'd most likely provide a dummy <stddef.h> to provide that macros. Plauger provides "The Standard C Library" and it is an easy header to provide - as long as it does not have to be portable. – Jonathan Leffler Sep 27 '08 at 5:19
AFAIK, offsetof() is not hing but ugly casting & pointer arithmetic... something like: #define offsetof(type, field) ((char *)&(((type *)0)->field) - (char *)0) – Dan Oct 1 '08 at 0:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.