Skip to content

Latest commit

 

History

History

Program-01

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Problem 01

Description

Write a program that prints the endianness of the computer.

'In computing, endianness is the order or sequence of bytes of a word of digital data in computer memory. Endianness is primarily expressed as big-endian (BE) or little-endian (LE). A big-endian system stores the most significant byte of a word at the smallest memory address and the least significant byte at the largest. A little-endian system, in contrast, stores the least-significant byte at the smallest address.'¹.

References

1 - Endianness

2 - Endianness Explained With an Egg - Computerphile

3 - Understanding Big and Little Endian Byte Order