static int myCompare (const void * a, const void * b)
{
return strcmp (*(const char **) a, *(const char **) b);
}
void sort1(const char *str1[],int n1)
{
qsort (str1,n1,sizeof (const char *), myCompare);
}
void sort2(const char *str2[], int n2)
{
qsort( str2, n2, sizeof (const char *),...
15.07.2018, 07:14