Answer Posted / preeti singh
Little endian and big endian refer to the order in which
sequence of bytes are stored in computer memory. Big-endian
is the order in which the most significant byte is stored
first in the memory (at lowest storage address). Whereas
Little-endian is the order in which the least significant
byteis stored first in the memory. For e.g. in a big-endian
computer the hexadecimal number 3AFB would be stored as 3AFB
in memory (3A at memory address 4000 and FB at memory
address 4001), whereas in little endian the same hexadecimal
number 3AFB will be stored as FB3A (FB at memory address
4000 and 3A at memory address 4001)
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
what is the structure pointer?
What is anagram in c?
Explain what is the benefit of using const for declaring constants?
What is maximum size of array in c?
What is optimization in c?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
How do you view the path?
How to write a code for reverse of string without using string functions?
int far *near * p; means
Stimulate calculator using Switch-case-default statement for two numbers
What is the use of header files?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
How can a number be converted to a string?
What are the three constants used in c?