I am trying to alphabetically sort the elements of argv.
The following line of code is giving me problems:
qsort(argv[optind], argc - optind, sizeof(argv[optind]), sort);
Specifically, the last argument is giving me trouble, the comparison function, which is given below:
int
sort(const void *a, const void * b)
{
return(strcmp( (char*)a, (char*)b ));
}
At the moment, it compiles fine, but I end up getting a segmentation fault when I run it.
argvarray results in undefined behavior. You might mention this to whoever gave you this homework assignment, and might even get extra credit if you can find the citation in the standard (left as an exercise for the reader). – R.. Sep 14 '10 at 12:58