Function Invocation
A program is made up of one or more functions, one of which is main()
Execution always begins with main()
When program control encounters a function name, the function is called, or invoked
- Program control passes to the function
- The function is executed
- Control is passed back to the calling environment