====== Big vs little endian ====== ===== Big endian ===== Most significant byte is stored at memory address with the lowest address. Example: 32 Bit integer is stored in 4 Bytes: 16909060 => Address 1000: x01, 1001: x02, 1002: x03, 1003: x04 ===== Little endian ===== Most significant byte is stored at memory address with the highest address.