+ 1
Which is this "||" symbol in c++
Do you know this??
2 Answers
+ 2
|| means OR in C++. If the compiler were to evaluate 2 < 1 || 3 > 2, it will return true as the answer, since the latter is true. An OR statement is true if any of them is true.
+ 2
Thanks for helping me out đđ