for(j=0;j<3;j++)
{
repeat:if((int*)ch[j][l]>(int*)ch[j+1][l])
{
strcpy(tmp,ch[j]);
strcpy(ch[j],ch[j+1]);
strcpy(ch[j+1],tmp);
}
else if((int*)ch[j][l]==(int*)ch[j+1][l])
{
l++;
} goto repeat;
}
for(i=0;i<3;i++)
{
printf("%s",ch[i]);
}
return 0;
NOt gettin any output