|
|
|
|
|
|
What action is performed by the return statement in this case? |
|
|
return;
can't be used in void. It's a type of function that never returns anything.
return;
can be used in a function that doesn't return any variable (such as this function above).return;
in the function, how would you make it stop where you wanted?