diff options
| -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;
|