Hi to all,
i want a program to find little endian or big endian processor?
can u help me plz.....
i want a program to find little endian or big endian processor?
can u help me plz.....
unsigned char DataBuffer[2]; unsigned short value; // code to fill in DataBuffer from some source value = (((unsigned short)DataBuffer[0]<<8) | (unsigned short)DataBuffer[1]);
Comment