aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch9-Debugging
diff options
context:
space:
mode:
authorEvan <[email protected]>2022-10-18 19:55:47 -0700
committerEvan <[email protected]>2022-10-18 19:55:47 -0700
commit6a919ad42716acfcdbc1b42a722be5d73e5153e1 (patch)
treec97331c3c29cadfdf17a51e29b0d900d8c397415 /CST116-Ch9-Debugging
parent1st (diff)
downloadcst116-ch9-debugging-evanmihm-6a919ad42716acfcdbc1b42a722be5d73e5153e1.tar.xz
cst116-ch9-debugging-evanmihm-6a919ad42716acfcdbc1b42a722be5d73e5153e1.zip
g
Diffstat (limited to 'CST116-Ch9-Debugging')
-rw-r--r--CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp
index eff8980..27f4515 100644
--- a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp
+++ b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp
@@ -12,10 +12,15 @@
* 4) Add another watch using &age for the name. This will display
* the address of age.
* 5) Write down the address of age.
+* &age 0x000000736f6ff774 {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.
* 9) Why did the address of age and value change?
+*
+* the numbers are from overflow
+*
* 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.
@@ -95,11 +100,12 @@ int GetAge()
return age;
}
-int CalcDays(int years)
+//below age was years. trying to fix equation
+int CalcDays(int age)
{
int days;
- days = years * DAYS_PER_YEAR;
+ days = age * DAYS_PER_YEAR;
return days;
}