C - Pointers and Arrays4
From EdWiki
Pointers and Arrays ...
- If pa is a pointer, expressions may use it with a subscript; pa[i] is identical to *(pa+i)
- When an array name is passed to a function, what is passed is the address of the initial element. With in the called function, this argument is a local variable pointer.