diff options
| author | Morgan Cyrus <[email protected]> | 2022-10-19 19:19:06 -0700 |
|---|---|---|
| committer | Morgan Cyrus <[email protected]> | 2022-10-19 19:19:06 -0700 |
| commit | c8d83eeb03ea85862dec3234aff1cac8cc403a8a (patch) | |
| tree | 38e3cdcdacb5f3f9589f7ca38cf001d1a565aeb3 /CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp | |
| parent | ex1, step5 done (diff) | |
| download | cst116-ch9-debugging-radioflyer32-c8d83eeb03ea85862dec3234aff1cac8cc403a8a.tar.xz cst116-ch9-debugging-radioflyer32-c8d83eeb03ea85862dec3234aff1cac8cc403a8a.zip | |
step 14
Diffstat (limited to 'CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp')
| -rw-r--r-- | CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp index ce4ab77..e239165 100644 --- a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp +++ b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp @@ -22,11 +22,15 @@ * 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?
+* looking at a different instance of age
+*
* 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?
+* the function was called, but the returned result wasn't stored anywhere.
+*
* 15) Stop debugging and fix the error.
* 16) Run to Breakpoint 1.
* 17) Step over the function call to GetAge.
|