diff options
| author | jacobdw22 <[email protected]> | 2022-10-17 12:16:50 -0700 |
|---|---|---|
| committer | jacobdw22 <[email protected]> | 2022-10-17 12:16:50 -0700 |
| commit | 7e862e05acf5baad2a97f66bb8ba06f87337801e (patch) | |
| tree | f4dfc8fd0b0fc7ed1e10873bb2f85183a49dfb4f | |
| parent | simple changes (diff) | |
| download | cst116-ch9-debugging-jacobdw22-7e862e05acf5baad2a97f66bb8ba06f87337801e.tar.xz cst116-ch9-debugging-jacobdw22-7e862e05acf5baad2a97f66bb8ba06f87337801e.zip | |
simple changes
| -rw-r--r-- | CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp index eff8980..a803c11 100644 --- a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp +++ b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp @@ -16,11 +16,13 @@ * 7) The execution continues to the function header for GetAge.
* 8) Step into one more time.
* 9) Why did the address of age and value change?
+* age was already set to 0, but it was then set as an int with no value, which puts garbage into the variable.
* 10) Step over the cout and cin statements.
* 11) Verify the value entered is stored properly in age.
* 12) Step into until the flow returns to main.
* 13) Step over one more time.
* 14) Why didn't the value entered get transferred back to main?
+* After returning to main(), the value of age was set back to 0.
* 15) Stop debugging and fix the error.
* 16) Run to Breakpoint 1.
* 17) Step over the function call to GetAge.
|