I want to compare two strings. Is it possible with strcmp? (I tried and it does not seem to work). Is string::compare a solution?
strcmp
string::compare
Other tha
See std::basic_string::compare and std::basic_string operators reference (in particular, there exists operator==, operator!=, operator<, etc.). What else do you need?
operator==
operator!=
operator<