Endianness
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhEf-s_-8QmnajdCIavkzDPzzB-LM1SdKJpRMJ-cz3jBgCyjr7AjOL9b3O_YcloYCjRuBX9CzfL04h3H1UtHJWeO3A5xNzzycAQSd1g8qUdvw91Ac76Sw-zf3fyJ4OgdNZBmZB1QloHHpYZ/w443-h80/111.jpg)
Endianness: Programmers who work on high level languages they don’t think about the hardware endianness or computer architectures; they only think about the code and the executable part and not how to convert little endian to big endian or vice versa. But we should know how to deal with endianness; as sometimes it plays an important role and can create problem when transmitting from one computer and receiving on another whose endianness differ. When communicating between computers, if the endianness differs of that two(computers), the data transmitted can’t be received in the actual form. What is Endianness? Endianness refers to the byte order in which data is stored in the memory; also describes the byte order sent over a digital link. The term may also be used more generally for the internal ordering of any representation . The endianness is categorized into two types: Little endianness Big endianness Note : It is hardware dependent. Little Endianness: In this...