python输入5个字符串、按由小到大顺序输出_C语言,输入5个字符串,按由小到大的顺序输出。非常急,求指导!...
展开全部#define _CRT_SECURE_NO_WARNINGS 1#include#include#includevoid sort(char **p){char **q, **s, *t;for (q = p; q < p + 4; q++){for (s = q + 1; s < p + 5; s++){if (strcmp(*q, *s) > 0){t = *q;*...