offsetof
From cppreference.com
                    
                                        
                    
                    
                                                            
                    |   Defined in header  <stddef.h>
  | 
||
|   #define offsetof(type, member) /*implementation-defined*/  | 
||
The macro offsetof expands to an integer constant expression of type size_t, the value of which is the offset, in bytes, from the beginning of an object of specified type to its specified member, including padding if any.
[edit] Example
Run this code
Possible output:
the first element is at offset 0 the double is at offset 8
[edit] See also
|    unsigned integer type returned by the sizeof operator  (typedef)  | |
|   C++ documentation for offsetof 
 | |