Inspiration

include

using namespace std;

int main() { int arr[] = { 1, 5, 8, 9, 6, 7, 3, 4, 2, 0 }; int n = sizeof(arr) / sizeof(arr[0]);

/*Here we take two parameters, the beginning of the
array and the length n upto which we want the array to
be sorted*/
sort(arr, arr + n);

cout << "\nArray after sorting using "
        "default sort is : \n";
for (int i = 0; i < n; ++i)
    cout << arr[i] << " ";

return 0;

}

What it does

sorts an array

How we built it

using c++

Challenges we ran into

na

Accomplishments that we're proud of

it is running succesfully

What we learned

c++

What's next for Sorting an array using c++

post it on github

Built With

Share this project:

Updates