#include#include main(){ int a[10]={10,9,8,7,6,5,4,3,2,1}; std::sort(a,a+10); for(int i=0;i<10;i++) printf("%d\t",a[i]);}