if(a && b)
{
do something;
}
is there any possibility to evaluate arguments from right to left(b -> a)?
if \"yes\", what influenc
Every value computation and side effect of the first (left) argument of the built-in logical AND operator && and the built-in logical OR operator || is sequenced before every value computation and side effect of the second (right) argument.
Read here for a more exhaustive explanation of the rules set: order evaluation