int judge_endian(){union un{int i;char c;} un1;un1.i = 1;return (un1.c==1); 返回1是小端,0大端。}以存储0x12345678举例小端 大端高地址 12 78 高地址34 5656 34低地址 78 12 低地址