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/enc_temp_folder | |
| 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/enc_temp_folder')
| -rw-r--r-- | CST116-Ch9-Debugging/enc_temp_folder/c6bf94299b2db25a19ebf5f60c6b26f/CST116-Ch9-Debugging.cpp (renamed from CST116-Ch9-Debugging/enc_temp_folder/c66642f20683729f11bbc12673bac/CST116-Ch9-Debugging.cpp) | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CST116-Ch9-Debugging/enc_temp_folder/c66642f20683729f11bbc12673bac/CST116-Ch9-Debugging.cpp b/CST116-Ch9-Debugging/enc_temp_folder/c6bf94299b2db25a19ebf5f60c6b26f/CST116-Ch9-Debugging.cpp index daefbcf..090360e 100644 --- a/CST116-Ch9-Debugging/enc_temp_folder/c66642f20683729f11bbc12673bac/CST116-Ch9-Debugging.cpp +++ b/CST116-Ch9-Debugging/enc_temp_folder/c6bf94299b2db25a19ebf5f60c6b26f/CST116-Ch9-Debugging.cpp @@ -9,9 +9,15 @@ * 1) Insert a breakpoint on the lines indicated in the code. * 2) Run to Breakpoint 1. * 3) Place a watch on age and days. +* done +* * 4) Add another watch using &age for the name. This will display * the address of age. +* done +* * 5) Write down the address of age. +* + &age 0x00eff9ec {0} int * + * 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. |