摘要: 网络字节序使用大端字节序:#include #include int main(void){int k = 0x12345678; printf("%x %x %x %x\n",*((char*)&k),*((char*)&k+1),*((char*)&k+2),*((char*)&k+3))... 阅读全文
posted @ 2014-05-20 18:26 轻典 阅读(204) 评论(0) 推荐(0) 编辑