I\'m going though a computers system course and I\'m trying to establish, for sure, if my AMD based computer is a little endian machine? I believe it is because it
An easy way to know the endiannes is listed in the article Writing endian-independent code in C
const int i = 1; #define is_bigendian() ( (*(char*)&i) == 0 )