summaryrefslogtreecommitdiff
path: root/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
diff options
context:
space:
mode:
authorJoe Traver <[email protected]>2022-11-09 22:46:51 -0800
committerJoe Traver <[email protected]>2022-11-09 22:46:51 -0800
commitd4e5d8656c4a60f975adc9e5d7c0128b8a87488b (patch)
treeddb2e0643e1ba5301e61e60ab0ae1bd0955a9757 /CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
parentoutput txt file added (diff)
downloadcst116-ch11-debugging-joetraver30-d4e5d8656c4a60f975adc9e5d7c0128b8a87488b.tar.xz
cst116-ch11-debugging-joetraver30-d4e5d8656c4a60f975adc9e5d7c0128b8a87488b.zip
Added error output and note of confusion
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp')
-rw-r--r--CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
index d2a70d5..ade508a 100644
--- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
+++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
@@ -31,6 +31,8 @@
input file.
* 11) Build and execute your code until you have all errors
* removed and all the output is correct.
+*
+* ************ Can't figure out how to shift the flag in the program **************
*
* Debugging Exercise 2
*
@@ -83,7 +85,7 @@ int main()
// Notice how this automatically opens the file
ofstream outFile("C:\\TEMP\\Chap_11_Report.txt");
- inFile.open("C:\\TEMP\\Chap_11_data_JT.txt");
+ inFile.open("C:\\TEMP\\Chap_11_data_IT.txt");
if (inFile.is_open())
{