Original Post
Quick C++ question: when I have a line like will the program stop evaluating the conditional if clause1 is false? In other words, will it realize it doesn't need to check clause2? What about vice versa, with an OR statement with a true first clause?
if (clause1 && clause2)