Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

How do you write a code that sorts an array of numbers, in C++?

0 votes
asked Apr 12, 2020 by DevinW (120 points)

1 Answer

0 votes
answered Apr 15, 2020 by sshantanuagarwal (140 points)
#include <algorithm>

int main() {

   std::vector<int> v {7,1,8,2,88,3,4,1,5,6};

   std::sort( v );

}
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...