码迷,mamicode.com
首页 > 编程语言 > 详细

二位数组与指针

时间:2015-04-11 10:16:17      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

#include<stdio.h>
#include<iostream>
using namespace std;

void disparry(int a[2][3])
{
printf("\n%d,%d,%d",a[0][0],a[0][1],a[0][2]);
}
int  main(void)
{
    int arr[2][3]={{2,3,1},
    {23,45,6}};
    //c是一个指针,指向的元素int[3],即arr的行元素 
    int (*c)[3]=arr;
    int *p;
    p =(int *)arr;
    //p指向arr[0][0],也可以说是arr[0] 
    cout<<p<<endl<<arr[0]<<endl<<&arr[0][0]<<endl; 
    cout<<endl<<*p<<endl;
    disparry((int (*)[3])p);
    disparry(c);
    return 0;
}

参考http://blog.chinaunix.net/uid-2595338-id-2139571.html

看数据结构与算法发现二维数组与二维指针还有点问题,补习了下,

  int (*c)[3]

二位数组与指针

标签:

原文地址:http://www.cnblogs.com/ashen/p/4416192.html

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