Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,990 questions

51,935 answers

573 users

How to sort an array in C++

2 Answers

0 votes
#include <iostream>
#include <algorithm>

int main() 
{ 
    int arr[] = {13, 5, 2, 10, 4, 9, 7, 8, 559}; 
    int size = sizeof(arr)/sizeof(arr[0]); 
    
    std::sort(arr, arr + size); 
    
    for (int i = 0; i < size; i++) { 
        std::cout << arr[i] << " ";  
    }
} 




/*
run:

2 4 5 7 8 9 10 13 559 

*/

 



answered Dec 8, 2021 by avibootz
edited Nov 28, 2022 by avibootz
0 votes
#include <iostream>
#include <array>
#include <algorithm>

int main () {
    std::array<int, 7> arr = {5, 8, 0, 3, 1, 9, 4};

    std::sort(arr.begin(), arr.end());
    
    for (auto val : arr) {
        std::cout << val << " ";
    }
}
   
   
   
/*
run:
   
0 1 3 4 5 8 9  
   
*/

 



answered Nov 28, 2022 by avibootz

Related questions

1 answer 67 views
1 answer 89 views
1 answer 113 views
1 answer 150 views
1 answer 159 views
...