how to sort a string in c++ code example
Example 1: how to sort a string in c++
#include<bits/stdc++.h>
using namespace std;
int main()
{
srting str; // First, declare a string.
sort(str.begin() , str.end()); // Then sort it by using this method. It is much more convenient.
cout << str << endl; // Last of all, print out the string.
}
Example 2: write a c++ program that reads ten strings and store them in array of strings, sort them and finally print the sorted strings
void sortString(string &str)
{
sort(str.begin(), str.end());
cout << str;
}
// Driver program to test above function
int main()
{
string s = "geeksforgeeks";
sortString(s);
return 0;
}