英文 C语言 求翻译解决思路

英文 C语言 求翻译
Chapter: Pointer.

"There is one exception:the address of the first element past the end of an array can be used in pointer arithmetic."
——————————每个单词我都认得 连起来就不知所云
  请大家帮助,谢谢

------解决方案--------------------
例外:在指针运算中,第一个通过数组尾部元素的地址是可以使用的。

但是这句话是什么意思呢。。。
------解决方案--------------------
意思就是比如下面的代码不应该引发异常:
char a[10];
int i;
char *p;
for (i=0;i<=11;i++) p=&(a[i]);