Pointer to array of string and Array of Pointer to String refer to the same thing?

Pointer to array of string - is a 2D array of char

Code:
char s[2][3] = {...};
how to declare a pointer to such an array ?


Array of Pointer to String

Code:
char * s[2][3] = {...};