int (*a)[5];
How can we Initialize a pointer to an array of 5 integers shown above.
Is the below expression correct ?
int
int a1[5] = {1, 2, 3, 4, 5}; int (*a)[5] = &a1;