判断是大端字节序还是小端字节序

判断是大端字节序还是小端字节序

union

{

short  s;

char   c[sizeof(short)];

} un;

un.s = 0x0102;

if (sizeof(short) == 2)

{

if (un.c[0] == 1 && un.c[1] == 2)

printf("big-endian\n");

else if (un.c[0] == 2 && un.c[1] == 1)

printf("little-endian\n");

else

printf("unknown\n");

}

else

printf("sizeof(short) = %d\n", sizeof(short));

原文

unpv1

原文地址:https://www.cnblogs.com/mydomain/p/3001873.html