Home / Questions / Is there a built-in function in C that can be used for sorting data?
Explanatory Question

Is there a built-in function in C that can be used for sorting data?

👁 931 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

Answer with Explanation

Yes, use the qsort() function. It is also possible to create user defined functions for sorting, such as those based on the balloon sort and bubble sort algorithm.