what is the little endian and big endian?
Answer / 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 |
What are the 5 data types?
What is volatile c?
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
Explain the use of keyword 'register' with respect to variables.
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What are the complete rules for header file searching?
how to add numbers without using arithmetic operators.
What is an volatile variable?
wat is the difference between array and pointer?
Using which language Test cases are added in .ptu file of RTRT unit testing???
What is return in c programming?