int sort(char *p[]){int i,j,temp;for(i=1;i< 4;i++){ for(j = i;j >= 0;j--){ if(strcmp(p[i],p[j])>0){ temp=p[i]; p[i]=p[j]; p[j]=temp; } }}return 0;}