I have a question about a pointer to 2d array. If an array is something like
int a[2][3];
then, is this a pointer to array a?<
a
Also note:
int *p[5] // p is an array of 5 pointers int (*p)[5] // p points to an array of 5 ints int (*(p+5))[10] // p is a pointer to a structure where the structure's 5th element has 10 ints .