码迷,mamicode.com
首页 > 其他好文 > 详细

010 大端和小端

时间:2018-09-30 13:02:12      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:内存   stream   printf   stdio.h   pac   har   模式   int   amp   

所谓的大端模式,是指数据的低位保存在内存的高地址中,而数据的高位,保存在内存的低地址中;

所谓的小端模式,是指数据的低位保存在内存的低地址中,而数据的高位保存在内存的高地址中。

#include "stdafx.h"
#include <stdio.h>
#include <iostream>

using namespace std;

int main()
{
int i = 100;

cout << *((char*)(&i)) << endl;
printf("%d\n", *((char*)(&i)));
cout << (int)*((char*)(&i) + 1) << endl;
cout << (int)*((char*)(&i) + 2) << endl;
cout << (int)*((char*)(&i) + 3) << endl;
// cout << (int)*((char*)(&i) + 4) << endl;

printf("%d\n", (char*)(&i));
printf("%d\n", (char*)(&i + 1));
printf("%d\n", (char*)(&i + 2));
printf("%d\n", (char*)(&i + 3));
printf("%d\n", (char*)(&i + 4));

return 0;
}

010 大端和小端

标签:内存   stream   printf   stdio.h   pac   har   模式   int   amp   

原文地址:https://www.cnblogs.com/guojun/p/9728625.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!