Skip to content
Permalink
cf3141a59d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
36 lines (29 sloc) 602 Bytes
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
static int
compare (const void *a, const void *b)
{
return strcmp (*(char **) a, *(char **) b);
}
int
main (void)
{
char bufs[500][20];
char *lines[500];
size_t lens[500];
size_t i, j;
srandom (1);
for (i = 0; i < 500; ++i)
{
lens[i] = random() % 19;
lines[i] = bufs[i];
for (j = 0; j < lens[i]; ++j)
lines[i][j] = random() % 26 + 'a';
lines[i][j] = '\0';
}
qsort (lines, 500, sizeof (char *), compare);
for (i = 0; i < 500 && lines[i] != NULL; ++i)
puts (lines[i]);
return 0;
}