标签:
指针数组: 是一个数组,元素是指针类型
int* pAddr[10];
数组指针: 是一个指针
int (*p)[3];
说明: 定义的格式上,数组指针比指针数组多一个括号,记法: 指针比较麻烦
指针数组与数组指针的区别
原文地址:http://www.cnblogs.com/aheadshooter/p/4331041.html