Answers for "stl ordering"

C++
0

stl ordering

int arr[] = { 1, 5, 8, 9, 6, 7, 3, 4, 2, 0 };
std::sort(arr, arr + n);
Posted by: Guest on June-01-2021

Browse Popular Code Answers by Language