tgoop.com/pythonsocket/1027
Create:
Last Update:
Last Update:
Little Endian
In Little Endian format, the least significant byte (the "little end") is stored at the smallest memory address. This is the opposite of Big Endian.
Visual Representation of Little Endian
Using the same 4-byte integer 0x12345678, in Little Endian it would be stored as follows:
Memory Address: [0x00] [0x01] [0x02] [0x03]
Value: 0x78 0x56 0x34 0x12
Here, 0x78 is the least significant byte and is stored at the lowest memory address (0x00).
BY Python Socket
Share with your friend now:
tgoop.com/pythonsocket/1027