how to sort an array of type int arry[MAX] using stl
where MAX is defined already and we know the number of entries in the array?
1 2 3 4 5 6 7 8
#define MAX 50000;
int main(){
int arry[MAX];
//after doing some insertion size of final array is size=a some value that we know
//now i want to sort it using some library function is there any function such kind
return 0;
}