diff options
| author | jacobdw22 <[email protected]> | 2022-10-17 15:43:50 -0700 |
|---|---|---|
| committer | jacobdw22 <[email protected]> | 2022-10-17 15:43:50 -0700 |
| commit | 03b4483c4ae367c840a409241cafc7f30e36fb06 (patch) | |
| tree | bea5ffb1bcd63572b373888018e192163641da9c | |
| parent | simple changes (diff) | |
| download | cst116-ch9-debugging-jacobdw22-03b4483c4ae367c840a409241cafc7f30e36fb06.tar.xz cst116-ch9-debugging-jacobdw22-03b4483c4ae367c840a409241cafc7f30e36fb06.zip | |
simple changes
| -rw-r--r-- | CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp index a803c11..a305ab2 100644 --- a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp +++ b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp @@ -1,6 +1,6 @@ /********************************************************************
* File: CST116-Ch9-Debugging.cpp
-*
+* Jacob Wilson CST116 Ch9 Debugging
* General Instructions: Complete each step before proceeding to the
* next.
*
@@ -22,7 +22,7 @@ * 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?
-* After returning to main(), the value of age was set back to 0.
+* After returning to main(), the value of age was set back to 0, as there was a local scope for int getage(), but those variables aren't carrying over to the main.
* 15) Stop debugging and fix the error.
* 16) Run to Breakpoint 1.
* 17) Step over the function call to GetAge.
|