expr && b(); # Short circuit operator b() if expr; # if clause if ( expr ){ # "traditional" if b(); }