InterviewSolution
Saved Bookmarks
| 1. |
What Is The Easiest Sorting Method To Use? |
|
Answer» The answer is the STANDARD library FUNCTION qsort(). It’s the easiest sort by far for several reasons: Void qsort(void *buf, size_t num, size_t size, int (*comp) (const void *ele1, const void *ele2));The answer is the standard library function qsort(). It’s the easiest sort by far for several reasons: |
|