Eg, if I write something like this
Code:
if (a() && b()) {
     //.....
}
is it possible that b() doesn't get evaluated if a() returns false? What does the standard say about this?

Thank you