+ 1
What library to use when comparing strings together I alphabetically??? In C++
i want to arrange strings alphabetically i want to get the first string and the second , like string s1,s1; if (s1 >s2) so i want s1 to be compared to s2 what library should i use in c+*
1 Answer
+ 2
u need to create a counter that counts every letter in your string and you wount need a library in c++.