指针位置移动
1 #include <iostream> 2 using namespace std; 3 const int MAX = 6; 4 int main() 5 { 6 int arr[MAX] = {2,4,6,8,10,12}; 7 int *p = arr;//数组地址 int *p = &arr[0] 8 for(int i=0;i<MAX;i++){ 9 cout<<p<<endl; 10 cout<<*p<<endl; 11 p++;//指针移动位置 12 } 13 return 0; 14 } 15 16 /* 17 结果: 18 0x7fff1343c540 19 2 20 0x7fff1343c544 21 4 22 0x7fff1343c548 23 6 24 0x7fff1343c54c 25 8 26 0x7fff1343c550 27 10 28 0x7fff1343c554 29 12 30 */
原文:http://www.cnblogs.com/yuge790615/p/6361771.html