代码 int ar[10];//定义一个有10个元素的数组 int* p;//定义一个为整型的指针变量 int* sr[10];//定义一个有10个整型指针变量的数组 int(*s)[10];//定义一个数组指针,它指向的数组拥有10个整型元素