概述
题目要求:输入的字符串按首字符大小排序
]代码如下。
选择排序:
#include<stdio.h>
#include<string.h>
#define SIZE 81
#define LIM 20
int main()
{
char input[LIM][SIZE];
char *ptstr[LIM];
//注意:是指针(代码块下方会有说明理由)
int ct = 0;
//字符串组数
int k;
void stsrt(char *strings[],int num);
//声明编写的字符串排序函数
char *s_gets(char *st,int n);
//声明修改后的输入函数
while(ct < LIM && s_gets(input[ct],SIZE) != NULL && input[ct][0] != '