【C语言】指向指针的指针变量对字符串进行排序
#include <stdio.h>#include <stdlib.h>#include <string.h>void sort(char * str[], int size) { int i, j; char * tmp; for (i = 0; i < size - 1; i++) { for (j = i + 1; j < size; j++)