summaryrefslogtreecommitdiff
path: root/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
diff options
context:
space:
mode:
authorAndrei F <[email protected]>2022-11-01 22:38:45 -0700
committerAndrei F <[email protected]>2022-11-01 22:38:45 -0700
commita2dab43a586a88e239b3e28264998870e3080de8 (patch)
treea49d555a041dda98847c7cc871fb48e13e71ab12 /CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
parentCommiting (diff)
downloadcst116-ch11-debugging-florea-a2dab43a586a88e239b3e28264998870e3080de8.tar.xz
cst116-ch11-debugging-florea-a2dab43a586a88e239b3e28264998870e3080de8.zip
Working through first part
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp')
-rw-r--r--CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
index 0e8fe34..84e77eb 100644
--- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
+++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
@@ -88,9 +88,9 @@ int main()
ifstream inFile;
// Notice how this automatically opens the file
- ofstream outFile("../Chap_11_Report.txt");
+ ofstream outFile("Chap_11_Report.txt");
- inFile.open("../Chap_11_data.txt");
+ inFile.open("Chap_11_data.txt");
if (inFile.is_open())
{