diff options
| author | Kai <[email protected]> | 2022-10-19 19:45:56 -0700 |
|---|---|---|
| committer | Kai <[email protected]> | 2022-10-19 19:45:56 -0700 |
| commit | 0934b96f50fd0b5175cd39f197a7db73c4fdf132 (patch) | |
| tree | 447eff1d68edb175682bf88640cac1a66c6e77b1 /CST116-Ch9-Debugging | |
| parent | going thru the ropes (diff) | |
| download | cst116-ch9-debugging-cobrakai2-0934b96f50fd0b5175cd39f197a7db73c4fdf132.tar.xz cst116-ch9-debugging-cobrakai2-0934b96f50fd0b5175cd39f197a7db73c4fdf132.zip | |
age
Diffstat (limited to 'CST116-Ch9-Debugging')
| -rw-r--r-- | CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp index c7e2328..274a455 100644 --- a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp +++ b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp @@ -78,7 +78,7 @@ int main() // Breakpoint 1
// Put breakpoint on the following line
- GetAge();
+ age = GetAge();
days = CalcDays(age);
// Breakpoint 2
|