what\'s the difference between these 2 declarations:
char (*ptr)[N];
vs.
char ptr[][N];
thanks.
First is declare ptr as pointer to array N of char Second is declare ptr as array of array N of char
Plz refer link