I\'ve been trying to solve this bsearch homework problem for awhile now.I try using my code to first search for one entry like so:
If I have two functions: void SortStudents(char *studentList[], size_t studentCount) { qsort(studentList, sizeof(studentList)/sizeof(studentList[0]), sizeof(studentList[0]), Compare);
I need to implement qsort in C and sort in reverse lexicographical order. I\'m confused on how to create and call the comparison function. This is what I have so far..