Return Types
Return Type: The type which the function returns. If you ask someone to add two number you would expect them to give you/ return a value.
If you write a function to add two integers together, you would expect it to return an integer. In this case the return type is int
Functions return one value
Function which have no return type are labelled void