Transfer the flow of control to the hello function

The main function calls the hello function first. 

This causes the flow of control in the program to pass from the main function to the hello function.

The hello function displays a message on the screen and then terminates.

Return control to the main function

When the hello function terminates,  control is returned to the main function without returning a value in the process.