for(i=0;i<n;i++) for(j=0;j<n-i-1;j++) if(strcmp(p[j],p[j+1])>0) { temp=p[j]; p[j]=p[j+1]; p[j+1]=temp; }