What is the library routine for sorting an array in dev c++?
Answers
Answered by
0
Answer:
std::sort() is a built-in function in C++'s Standard Template Library. The function takes in a beginning iterator, an ending iterator, and (by default) sorts the iterable in ascending order. The function can also be used for custom sorting by passing in a comparator function that returns a boolean.
Plz mark as brainliest
Similar questions