#include<stdio.h>
int main(){ int x = 0x12345678; char a; a = ((char*)&x)[0]; printf("%x",a); return 0;}
如果结果是78,则为小端模式
如果为12,则为大端模式