It turns out that this can be done and that
int (*p1d)[5];
is the proper declaration, i.e. p1d here is a pointer to an array of 5 integers just as it was
under the declaration using the Array type. Note that this is different from
int *p1d[5];
which would make p1d the name of an array of 5 pointers to type int.
Reputation Points: 10
Solved Threads: 0
Junior Poster in Training
Offline 55 posts
since Apr 2009