diff options
| author | prestonderek <[email protected]> | 2022-10-18 10:27:35 -0700 |
|---|---|---|
| committer | prestonderek <[email protected]> | 2022-10-18 10:27:35 -0700 |
| commit | 105b799cbffbfbffe33cd62a72b0b7d0e3ec6b32 (patch) | |
| tree | 37ab8ef7b3a6a1369fb325f0191db32ea546edd3 /CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp | |
| parent | Exercise 3 complete (diff) | |
| download | cst116-ch9-debugging-prestonderek-105b799cbffbfbffe33cd62a72b0b7d0e3ec6b32.tar.xz cst116-ch9-debugging-prestonderek-105b799cbffbfbffe33cd62a72b0b7d0e3ec6b32.zip | |
Exercise 4 complete
Diffstat (limited to 'CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp')
| -rw-r--r-- | CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp index 831faf3..b8f7f65 100644 --- a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp +++ b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp @@ -71,6 +71,7 @@ //exercise 3: when entering into the print function, the variables are flipped.
//Variables have to be in the correct order so that they print in the correct order.
//It will assign the first value called to the first value in the function
+//exercise 4. Opened call stack window from debug drop down. Noticed that stepping into print function made it the top call stack.
#include <iostream>
using std::cout;
|