#include <stdio.h> #include <string.h> #include <stdlib.h> int cmp(const void* x, const void* y) { const char* a = x; const char* b = y; return *a - *b > 0 ? 1 : -1; } int IsBro(char* str3, char* str4) { char str1[1000]; char str2[1000]; strcpy(str1,str3); strcpy(str2,str4); if ...