首页 > 其他 > 详细

关于数组地址的一道题

时间:2014-09-28 00:02:11      阅读:330      评论:0      收藏:0      [点我收藏+]
#include<iostream>
using namespace std;

int main()
{
char a[2]={7,3};
char *p0=NULL,*p1=NULL;
p0=&a[0];
p1=&a[1];
cout<<p0<<endl; 
cout<<p1<<endl;
cout<<p0-p1<<endl;
cout<<"************"<<endl;
cout<<(int*)p0<<endl; 
cout<<(int*)p1<<endl; 
cout<<(int*)p0-(int*)p1<<endl; 

system("pause");
return 0;
}

结果:

bubuko.com,布布扣

 

 

分析:

p,p1是char型的指针,指向的是数组元素的地址,所以相差1。

关于数组地址的一道题

原文:http://www.cnblogs.com/awidy/p/3997475.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!