用指向指针的指针的方法对5个字符串排序并输出

代码以下 #define _CRT_SECURE_NO_WARNINGS 1 #include<stdio.h> #include<stdlib.h> #include<string.h> void sort(char **p) { char **q, **s, *t; for (q = p; q < p + 4; q++) { for (s = q + 1; s < p + 5; s+
相关文章
相关标签/搜索