diff options
| author | Wyatt <[email protected]> | 2022-10-18 21:31:39 -0700 |
|---|---|---|
| committer | Wyatt <[email protected]> | 2022-10-18 21:31:39 -0700 |
| commit | 269986e14371a19186b24429b248fcc2202d35f0 (patch) | |
| tree | f943d88dabfb7114292d7fd6f9252376cf078170 | |
| parent | Setting up GitHub Classroom Feedback (diff) | |
| download | cst116-ch9-debugging-johnson-269986e14371a19186b24429b248fcc2202d35f0.tar.xz cst116-ch9-debugging-johnson-269986e14371a19186b24429b248fcc2202d35f0.zip | |
finished
| -rw-r--r-- | CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp index eff8980..bad3570 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.
+* 0x0000005dc40ff7d4 {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 new value 'age' is undefined.
* 10) Step over the cout and cin statements.
* 11) Verify the value entered is stored properly in age.
+* value is 12
* 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?
+* because the age in the function GetAge is different than the one in main()
* 15) Stop debugging and fix the error.
* 16) Run to Breakpoint 1.
* 17) Step over the function call to GetAge.
@@ -36,6 +40,7 @@ * 4) Step into one more time so that the current line is the
* calculation.
* 5) Why is age greyed out in your watch window?
+* Because years is a parameter of a function
* 6) Stop debugging.
*
* Debugging Exercise 3
@@ -47,6 +52,7 @@ * 4) Step into the PrintResults function.
* 5) Age is 7300? Not even Ralph is that old.
* 6) Why did the values for both variables change?
+* The inputed variables were inputed in the wrong order.
* 7) Stop debugging and fix the error.
*
* Debugging Exercise 4
@@ -68,7 +74,7 @@ const int DAYS_PER_YEAR = 365; int GetAge();
int CalcDays(int age);
-void PrintResults(int age, int days);
+void PrintResults(int days, int age);
int main()
{
@@ -77,12 +83,12 @@ int main() // Breakpoint 1
// Put breakpoint on the following line
- GetAge();
+ age = GetAge();
days = CalcDays(age);
// Breakpoint 2
// Put breakpoint on the following line
- PrintResults(age, days);
+ PrintResults(days, age);
return 0;
}
@@ -103,6 +109,7 @@ int CalcDays(int years) return days;
}
+
void PrintResults(int days, int age)
{
cout << age << "! Boy are you old!\n";
|