diff options
| author | DoolyBoi <[email protected]> | 2022-10-18 19:19:21 -0700 |
|---|---|---|
| committer | DoolyBoi <[email protected]> | 2022-10-18 19:19:21 -0700 |
| commit | c78356e350001b444a03923ae61805047dc8c3d9 (patch) | |
| tree | e5e144ae2f90c691233d2bcf7002eea4f0369c16 /CST116-Ch9-Debugging | |
| parent | added gitignore (diff) | |
| download | cst116-ch9-debugging-abd00l4h-c78356e350001b444a03923ae61805047dc8c3d9.tar.xz cst116-ch9-debugging-abd00l4h-c78356e350001b444a03923ae61805047dc8c3d9.zip | |
debugging exercise 1 parts
Diffstat (limited to 'CST116-Ch9-Debugging')
| -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 eff8980..733ce55 100644 --- a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp +++ b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp @@ -12,15 +12,19 @@ * 4) Add another watch using &age for the name. This will display
* the address of age.
* 5) Write down the address of age.
+* 0x00000059fe1df894 {0}
* 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?
+* The address of age changed to 0x00000059fe1df774 {-858993460} and the value of age changed to -858993460.
+* The reason why the values of age and it's address changed is becuase we re-instantiated the variable but didn't give it variable, so it just became filled with garbage
* 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?
+* We jump back to main and set age back to 0 because we run the age = 0 segment
* 15) Stop debugging and fix the error.
* 16) Run to Breakpoint 1.
* 17) Step over the function call to GetAge.
|