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

011 指针的算术运算

时间:2018-09-30 16:37:55      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:out   []   include   算术运算   namespace   har   stream   name   str   

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

using namespace std;

int main(int argc, char* argv[])
{
int a[5] = { 1,2,3,4,5 };
int *ptr = (int *)(&a + 1);
printf("%d,%d\n", *(a + 1), *(ptr - 1));
//2,5

cout << (int)&a << endl;
cout << int(a) << endl;
cout << int(&a[0]) << endl;

return 0;
}

011 指针的算术运算

标签:out   []   include   算术运算   namespace   har   stream   name   str   

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

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