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