#include <stdio.h> #include <stdlib.h> #include <string.h> // 1.声明字符串数组,获取字符串 // 2.对字符串指针进行排序,使用strcmp // 3.输出字符串 // 4.释放内存 int mycopm(const void *p1, const void *p2) { const char *a = *((const char* *) p1); const char *b = *((const char* *) p2); return strcmp(a, b); } int main() {...