show/hide this revision's text 2 sort chars instead of strings

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;
}
show/hide this revision's text 1

Use the qsort method:

#include <stdlib.h>

int str_compare (const void * a, const void * b)
{
  return strcmp(*(const char **)a, *(const char **)b);
}

int main(){
  const char* str_values[] = { "foo", "bar", "foobar" };
  qsort (str_values, 3, sizeof(char*), str_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;
}