int (*p) [5];/* Syntax for pointer to 1D array which can point to any integer array of size 5. */
I need to know what is the syntax of pointer to 2D array..
Is it
int (*p)[5][5];//???
or
int (**p)[5][5];//??
If anyone can post a code demonstrating the use of pointer to 2D array, it would great..