What is the easiest sorting method to use?

The answer is the standard library function qsort(). It’s the easiest sort by far for several reasons: It is already written. It is already debugged. It has been optimized as much as possible (usually). Void qsort(void *buf, size_t num, size_t size, int (*comp)(const void *ele1, const void *ele2));

Showing Answers 1 - 2 of 2 Answers

rahul

  • Oct 17th, 2005
 

very amazing

  Was this answer useful?  Yes

venki_max

  • Mar 26th, 2006
 

Greetings!

can u plz explain me the sorting function with its implementation in a small program and send it to my e-mail Id : venki_m182003@yahoo.com

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions