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 wild pointer in c with example?
Explain what is the difference between the expression '++a' and 'a++'?
Which function in C can be used to append a string to another string?
will u please send me the placement papers to my mail???????????????????
How can variables be characterized?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Define and explain about ! Operator?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is wrong with this code?
can we implement multi-threads in c.
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
Write a program for Overriding.
Why static is used in c?
Tell us something about keyword 'auto'.
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.