I am having a hard time understanding where I can use a pointer to an array,
e.g: char (*a)[10];.
So two basic questions.
- Please give me a simple example of how just a pointer to an array can be used in C code.
- Why would one use it as apposed to just declaring a variable as a pointer and then incrementing/decrementing the address after that point.