Hai, I'm a C++ beginner with self learning.I have a function that return a vector string
eg: vector <string> result :"PA1070","PA1088","PA1091","Pa1070","PA1044".....
How do I compare the vector string element in a proper way?
I tried to compare
(if result[0] < result[3] )
cout << "True";
else
cout << "False";
it should return False , because PA1070 is not lower than PA1070 ...But it returns True, why ? thanks