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 time complexity c?
Is there sort function in c?
What is the purpose of main() function?
Is main a keyword in c?
What are reserved words?
Explain about the constants which help in debugging?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What is the meaning of c in c language?
What is string function in c?
How do you initialize pointer variables?
What is a const pointer?
How is null defined in c?
When should a far pointer be used?
Write a program to check prime number in c programming?