Is there a difference between these two statements inside a function?
bool returnValue = true; // Code that does something return(returnValue);
Nope there's no difference between the two, although you can include parenthesis if it makes the expression easy to read and clear.