0
How to compare characters of a string in c++ ?
String in c++
2 Answers
+ 3
Do you mean compare for string equality?
std::string or char array?
+ 3
String is nothing but a character array so you can access them one by one just like any other array
String in c++