内向未来

文章
5
资源
0
加入时间
2年10月21天

深度剖析数据在内存中存储

判断大小端问题#include<stdio.h>#include<windows.h>int main(){ int x = 1; printf("%d\n", *((char*)&x)); system("pause"); return 0;}结果输出为1,说明为小端如图所示,当输出为1时,说明其为小端,反之,则为大端。#include<stdio.h>#