いくつかの文字列を入力し、アルファベット順に並べ替えます。最大で 100 個の文字列で、各文字列の長さは 50 未満ですが、セグメンテーション エラーが発生します。
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int comp(const void * a, const void * b)
{
return strcmp (*(const char **) a, *(const char **) b);
}
int main()
{
char sequences[100][50];
int nr_of_strings;
scanf("%d", &nr_of_strings);
int i;
for(i = 0; i < nr_of_strings; ++i)
scanf("%s", sequences[i]);
qsort(sequences, nr_of_strings, sizeof(char *), comp);
for(i = 0; i < nr_of_strings; ++i)
printf("%s\n", sequences[i]);
}