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



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

Answer / 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

More C Interview Questions

What is the use of in c?

0 Answers  


cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration

0 Answers  


typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?

1 Answers  


Can you think of a way when a program crashed before reaching main? If yes how?

2 Answers  


if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0

0 Answers  






What is the g value paradox?

0 Answers  


write the program for maximum of the following numbers? 122,198,290,71,143,325,98

5 Answers  


Why main is not a keyword in c?

0 Answers  


How do I initialize a pointer to a function?

2 Answers  


a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode

0 Answers  


Write a C++ program to give the number of days in each month according to what the user entered. example: the user enters June the program must count number of days from January up to June

0 Answers  


find a number whether it is even or odd without using any control structures and relational operators?

22 Answers   Microsoft, Shashank Private Limited,


Categories