Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions STL/CPP/STL_sort.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/**
* @file STLsort.cpp
* @author Shantanu Mane (@RndmCodeGuy20) (shantanu.mane.200@outlook.com)
* @brief Simple sorting program using standard STL sort.
* @version 1.0.12
* @date 2021-10-10
*
* @copyright Copyright (c) 2021
*
* @ref 1. Let Us C - Yashwant Kanetkar
* 2. Programming in ANSI C - E. Balagurusamy -> Test Project Appendix IV
*/

#include <bits/stdc++.h>
using namespace std;

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

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;
}