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
Here is a good puzzle: how do you write a program which produces its own source code as output?
What does a pointer variable always consist of?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
List some basic data types in c?
Explain what is the difference between #include and #include 'file' ?
What are conditional operators in C?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is the method to save data in stack data structure type?
What is string concatenation in c?
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
Can you please explain the difference between syntax vs logical error?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Can main () be called recursively?
What is the use of ?: Operator?