1.可以定义一个(*p)[]的数组型指针;
2.当需要处理的数组是字符串时,可以用
   #include<string.h>
   例,将字符数组进行排序 
   void sort(char (*p)[6])
   {  
 char t[6];
 char *s=t;
 int i,j;
 for (i=0;i<10;i++)
 {
  for(j=i;j<10;j++)
   {	
    if (strcmp(p[i],p[j])>0)  /*判断首字母的大小*/
      {
        strcpy(s,p[i]);      /*将两个字符串交换*/
        strcpy(p[i],p[j]);
        strcpy(p[j],s);
      }
   }
 }
   }
原文:http://www.cnblogs.com/singlebutterfly/p/4244206.html