spanthrivespanthrive.blog.chinaunix.net
spanthrive
do the right things the right ways
全部博文(87)
TestLink(2)
2017年(5)
2016年(6)
2015年(1)
2012年(11)
2011年(64)
激光切割
飞鸿无痕
luozhiyo
qiuzugen
上海下海
GFree_Wi
T-Bagwel
大鬼不动
cynthia
浪花小雨
格伯纳
shutingt
yarou201
nw_hzw_2
cwbo_win
theKerne
onlyword
分类:
2011-09-07 13:01:39
原文地址:测试大小端 作者:Radish_Hu
在x86 系统下,输出的值为多少?
#include
intmain()
{
int a[5]={1,2,3,4,5};
int *ptr1=(int *)(&a+1);
int *ptr2=(int *)((int)a+1);
printf("%x,%x",ptr1[-1],*ptr2);
return 0;
}
上一篇:nfs配置 /etc/exports
下一篇:unix/linux i/o 系统调用的详细使用 (附带测试代码)
登录 注册