what is the correct declaration of pointer to a pointer to array of N elements.
( i want to store address of pointer to an array of n elements )
i am using the below declarions seperately , but getting errors.
int (*p)[4];
int (*p1) (*)[4] = &p;
int *p1 (*)[4] = &p;
int (*p1) ( (*)[4] ) = &p;
any idea please..