int main() {
if("abc" < "a")
cout << 1 << "\n";
else
cout << 0 << "\n";
return 0;
}
Output: 1
Why 1 is coming in the output?
int main() {
if("abc" < "a")
cout << 1 << "\n";
else
cout << 0 << "\n";
return 0;
}
Output: 1
Why 1 is coming in the output?