标签:
#include <stdio.h> int main(void) { union { int i; char c; } u = { 0x4200004c }; printf("%c\n", u.c); return 0; }
判断大小端
原文地址:http://my.oschina.net/2bit/blog/484806