Programmer: Bill McQuain CS 1704: Run-time Stack Simulation Command: call main 0 3 1 2 3 Call to main initiated. -------------------------------------------------------------------------------- Command: call Func01 1 42 2 17 3 Call to Func01 initiated. -------------------------------------------------------------------------------- Command: display Func01 42 17 3 main 1 2 3 -------------------------------------------------------------------------------- Command: call Func02 0 0 Call to Func02 initiated. -------------------------------------------------------------------------------- Command: call Func03 0 0 Call to Func03 initiated. -------------------------------------------------------------------------------- Command: display Func03 Func02 Func01 42 17 3 main 1 2 3 -------------------------------------------------------------------------------- Command: return Call to Func03 terminated. -------------------------------------------------------------------------------- Command: display Func02 Func01 42 17 3 main 1 2 3 -------------------------------------------------------------------------------- Command: return Call to Func02 terminated. -------------------------------------------------------------------------------- Command: set 2 8 Local variable 2 set in function Func01 -------------------------------------------------------------------------------- Command: display Func01 42 17 8 main 1 2 3 -------------------------------------------------------------------------------- Command: set 5 23 Access violation on local variable 5 in function Func01 Terminating process execution. -------------------------------------------------------------------------------- Command: display Stack is empty. -------------------------------------------------------------------------------- Command: exit Exiting script execution. --------------------------------------------------------------------------------