Hex Editor
Hex Editor - Binary File Editing Software for Windows

& Address-Of Operator

HHD Software - Hex Editor Serial Port Monitor USB Protocol Analyzer Network Monitor
 
 
 
< PreviousTopNext >

This operator takes the address (offset) of the given field.

Syntax:

&field-id
      

Returned address is absolute.

struct A
{
    int a;
    int b;
    const OffsetTob = &b - this;    // offset to field b (in bytes) from the beginning of the 
                                        // structure is now stored in OffsetTob constant
};    
      
< PreviousTopNext >
Copyright © 2012 HHD Software. All rights reserved.