// strings can also be sorted // Mikhail Nesterenko // 11/21/2012 #include #include #include using std::string; using std::cout; using std::endl; int main(){ string hw="Hello World!"; sort(hw.begin(),hw.end()); cout << hw << endl; }