Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

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?

1309


Why doesnt the call scanf work?

1241


How can I sort more data than will fit in memory?

1164


Can a pointer point to null?

1117


What is meant by keywords in c?

1114


What is c language and why we use it?

1118


How is a pointer variable declared?

1158


what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;

2487


Explain do array subscripts always start with zero?

1282


printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions

1215


Explain the concept and use of type void.

1165


Explain how do you list files in a directory?

1112


Write a program to identify if a given binary tree is balanced or not.

1228


a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list

1045


What are qualifiers?

1104