Advertisement
SkyHawk

C++ sort()

Jul 6th, 2011
551
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.09 KB | None | 0 0
  1. #include <algorithm>
  2. using namespace std;
  3.  
  4. void cppSort(int* a,int l)
  5. {
  6.     sort(a,a+l);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement