I am curios of this:
Does the computer perform more operations if it happens to execute the following code:
than it would execute the following code:Code:if (condition) {return true;}
Or it is the same thing for C++?Code:if (condition) return true;




Reply With Quote