Use the qsort method:
#include <stdlib.h>
int str_compare char_compare (const void * a, const void * b)
{
return strcmp(*(const *(const char **)a, )a - *(const char **)b);
)b;
}
int main(){
const char * str_values[char_array[] = { "foo", "bar", "foobar" 'c', 'a', 'b' };
qsort (str_values, char_array, 3, sizeof(char*)sizeof(char), str_compare)char_compare);
// strcmp cannot be used directly since qsort will hand the compare function
// pointers to the char*s and strcmp expects to be handed the char*s directly.
return 0;
}
