why little endian and big endian came?y they using
differently? y they not used commonly ?wt is application of
little and big ?

Answer Posted / deadzg_devil

These are the two different architechture for handling
memory storage.
Little endian signifies lower order bit will be represented
first in memory and then the higher order bits. eg Intel
based computers

Big endian is just the opposit case. Eg. Motorola based
computers.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are near, far and huge pointers?

648


What is the use of sizeof?

556


the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....

22228


What is meant by realloc()?

677


Does sprintf put null character?

601






Explain two-dimensional array.

630


What should malloc(0) do?

615


an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational

812


What are types of structure?

604


What are global variables?

648


What is extern storage class in c?

513


Write a function that will take in a phone number and output all possible alphabetical combinations

603


What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?

905


Explain what is #line used for?

608


Is printf a keyword?

759