What is the difference between big endian form and little
endian form? write a code to convert big endian form to
little endian and vice versa..
Answer Posted / vish
Small correction in above macro.
'(' was missing in second line.
#define CON(NUM) (NUM&0x000000FF)<<24|(NUM&0x0000FF00)<<8
|(NUM&0x00FF0000)>>8 |(NUM&0xFF000000)>>24
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Why doesnt the call scanf work?
How can I sort more data than will fit in memory?
Can a pointer point to null?
What is meant by keywords in c?
What is c language and why we use it?
How is a pointer variable declared?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Explain do array subscripts always start with zero?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Explain the concept and use of type void.
Explain how do you list files in a directory?
Write a program to identify if a given binary tree is balanced or not.
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
What are qualifiers?