Transfer flow of control to the goodbye function

When control is returned to the main function from the hello function, the main function calls the goodbye function.

This passes the flow of control to the goodbye function.

The goodbye function displays the following text on the screen:

Goodbye cruel world

Then the goodbye function terminates, returning control to the main function without returning a value in the process.