diff options
| author | tafaar <[email protected]> | 2022-10-18 14:30:06 -0700 |
|---|---|---|
| committer | tafaar <[email protected]> | 2022-10-18 14:30:06 -0700 |
| commit | d91f4858748e900a8929751a615606011af97f7d (patch) | |
| tree | 6ea103dacf6ddb2d3ce034514a27852ecde56d74 /CST116-Ch9-Debugging | |
| parent | answered 9 (diff) | |
| download | cst116-ch9-debugging-hill-d91f4858748e900a8929751a615606011af97f7d.tar.xz cst116-ch9-debugging-hill-d91f4858748e900a8929751a615606011af97f7d.zip | |
answered 14
Diffstat (limited to 'CST116-Ch9-Debugging')
| -rw-r--r-- | CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp index eff8980..1f65cf3 100644 --- a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp +++ b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp @@ -16,11 +16,17 @@ * 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?
+*
+* Because "age" is defined in main and in the function
+*
* 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?
+*
+* Because GetAge() is being called without being used to set the age in main.
+*
* 15) Stop debugging and fix the error.
* 16) Run to Breakpoint 1.
* 17) Step over the function call to GetAge.
|