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
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
Describe how arrays can be passed to a user defined function
When we use void main and int main?
Why can arithmetic operations not be performed on void pointers?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What is malloc calloc and realloc in c?
Do you know pointer in c?
Define Spanning-Tree Protocol (STP)
Is fortran still used today?
The difference between printf and fprintf is ?
How is actual parameter different from the formal parameter?
what is the function of pragma directive in c?
show how link list can be used to repersent the following polynomial i) 5x+2
What are pointers in C? Give an example where to illustrate their significance.