4-byte Scalars
Scalars of type signed long and unsigned long are stored using four bytes (32 bits). The bytes are stored little endian or low to high order. For example, the long value 0x12345678 is stored in memory as follows:
| | Address+0 | Address+1 | Address+2 | Address+3 |
|---|
| Contents | 0x78 | 0x56 | 0x34 | 0x12 |