jiych
2013-08-05 10:16:51 +08:00
找到地址,就找到了指针。
int
main(int argc, char **argv)
{
int a [3] [2] = {{1,2},{3,4},{5,6}} ;
int i,j;
dir = getenv("PWD");
printf("dir:%s\n", dir);
for(i=0;i<3;i++)
for(j=0;j<2;j++)
printf("%p ", &a[i][j] );
printf("\n");
myPrint((const int **)a, 3, 2);
exit(EXIT_SUCCESS);
}
void myPrint (const int **vect, int row, int col)
{
int i;
int j;
printf("in myPrint\n");
for(i=0;i<row*col;i++)
printf("%p ", vect+i);
printf("\n");
}