Functions in C++ are modular blocks of code that perform a specific task. Writing a function involves declaring its return type, name, and parameters. In the exercise, the function
getNumber
is defined to accept a reference parameter, indicated by the ampersand (&), meaning that any change to the parameter variable within the function will reflect in the argument passed.
Reference parameters are useful when you need to modify the passed arguments and reflect the changes outside the function. Let's explore the function-writing process in the context of the
getNumber
function:
Declaration
- The function is first declared at the start of the program to inform the compiler about its existence.
Definition
- The function's body contains the logic to execute its task. It's where input validation takes place in our scenario.
Calling the Function
- The function is then called from the
main
function, or another function, and the actual value that needs to be processed is passed as an argument.
Using functions can greatly simplify your code by breaking down complex operations into smaller, more manageable pieces.