Functions and Global Variables
Functions can help you identify a program's major parts.
To find what a function does:
Guess, based on the function name.
Read the comment at the beginning of the function.
Examine how the function is used.
Read the code in the function body.
Consult external program documentation.