diff options
| author | [email protected] <[email protected]> | 2022-10-20 20:25:25 -0700 |
|---|---|---|
| committer | [email protected] <[email protected]> | 2022-10-20 20:25:25 -0700 |
| commit | 31ff15eed8e3b407ef9b0f18a2ca62b2fdcd53bb (patch) | |
| tree | a4dff44b6f6170cc5b22893c645210d658234101 /CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp | |
| parent | BANANAS (diff) | |
| download | cst116-ch10-debugging-smith-benjamin-31ff15eed8e3b407ef9b0f18a2ca62b2fdcd53bb.tar.xz cst116-ch10-debugging-smith-benjamin-31ff15eed8e3b407ef9b0f18a2ca62b2fdcd53bb.zip | |
Almighty PUSH!
Diffstat (limited to 'CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp')
| -rw-r--r-- | CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp b/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp index dd3629c..a24748b 100644 --- a/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp +++ b/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp @@ -101,6 +101,7 @@ int main() // Put breakpoint on the following line
FunctionTwo(varX, varY, varZ);
varZ[0] = -99;
+ varX[1] = 99;
PrintFunction(varX, varY, varZ);
return 0;
|