diff options
Diffstat (limited to 'CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp')
| -rw-r--r-- | CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp index fd89b4c..01ca7c2 100644 --- a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp +++ b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp @@ -52,12 +52,21 @@ *
* 1) Run to Breakpoint 1.
* 2) Step over the call to GetAge.
+* done
+*
* 3) Step into CalcDays.
+* done
+*
* 4) Step into one more time so that the current line is the
* calculation.
+* done
+*
* 5) Why is age greyed out in your watch window?
+* there is no age variable in this calculation. It is being tracked from the main function, but not visible in this function.
+*
* 6) Stop debugging.
-*
+* done
+*
*/
/*
|