stblsrt1.cpp

We use cookies. Read the Privacy and Cookie Policy

stblsrt1.cpp

#include ‹stl.h›

#include ‹iostream.h›

int array[6] = {1, 50, -10, 11, 42, 19};

int main() {

 stable_sort(array, array + 6);

 for (int i = 0; i ‹ 6; i++) cout ‹‹ array[i] ‹‹ ;

 cout ‹‹ endl;

 return 0;

}