Logical AND Operator ("&&") is a binary operator which yields 1 if both of its operands compare unequal to 0; otherwise, it yields 0.
When encountering a (bool1 && bool2), does c++ ever attempts to check bool2 if bool1 was found false or …
c++ short-circuiting and-operator logical-and