what\'s the difference between these 2 declarations:
char (*ptr)[N];
vs.
char ptr[][N];
thanks.
The first declares a pointer to an N-long array, the other declares an two dinemsional array. Note: They can be used to achieve the similar functionality, but they don't mean the same!