multidimensional arrays and pointers
- From: junky_fellow@xxxxxxxxxxx
- Date: 30 May 2005 22:22:50 -0700
Consider a 2-dimensional array,
char arr[3][3] = { 'a','b','c',
'd','e','f',
'g','h','i'
};
what is the difference between,
(arr + 1) and
*(arr + 1)
.
- Follow-Ups:
- Re: [links, FAQ] multidimensional arrays and pointers
- From: Mike Wahler
- Re: multidimensional arrays and pointers
- From: bjrnove
- Re: [links, FAQ] multidimensional arrays and pointers
- Prev by Date: Re: size of pointer variables
- Next by Date: Re: sizeof...
- Previous by thread: Clear doubts regarding the C++ Runtime
- Next by thread: Re: multidimensional arrays and pointers
- Index(es):