diff options
| author | Kai <[email protected]> | 2022-10-19 18:03:11 -0700 |
|---|---|---|
| committer | Kai <[email protected]> | 2022-10-19 18:03:11 -0700 |
| commit | 0855a5c64ff44a5e7a9198419aa095b956aacd74 (patch) | |
| tree | ba462d0882ca5f1f0b8f33c391bc93eef47fe62e | |
| parent | signing in (diff) | |
| download | cst116-ch9-debugging-cobrakai2-0855a5c64ff44a5e7a9198419aa095b956aacd74.tar.xz cst116-ch9-debugging-cobrakai2-0855a5c64ff44a5e7a9198419aa095b956aacd74.zip | |
going thru the ropes
| -rw-r--r-- | CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp index eff8980..c7e2328 100644 --- a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp +++ b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp @@ -11,16 +11,16 @@ * 3) Place a watch on age and days.
* 4) Add another watch using &age for the name. This will display
* the address of age.
-* 5) Write down the address of age.
+* 5) Write down the address of age. 0x000000306bcff894
* 6) Step Into the code for the function GetAge.
* 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?
+* 9) Why did the address of age and value change? Im guessing something to do with me not inputing something or something storage related.
* 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?
+* 14) Why didn't the value entered get transferred back to main? Something storage relataed, maybe its storing the value we entered some where else.
* 15) Stop debugging and fix the error.
* 16) Run to Breakpoint 1.
* 17) Step over the function call to GetAge.
@@ -74,6 +74,7 @@ int main() {
int age = 0;
int days = 0;
+ int years = 0;
// Breakpoint 1
// Put breakpoint on the following line
|