summaryrefslogtreecommitdiff
path: root/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
diff options
context:
space:
mode:
authorTaylor Rogers <[email protected]>2022-11-01 08:59:17 -0700
committerTaylor Rogers <[email protected]>2022-11-01 08:59:17 -0700
commit66ffe8bfc61f9640038514e659dcfc8bcb9b55de (patch)
tree6b32083c9c5c2e41b6ecf8acfd9287bf88f7d6d6 /CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
parentInitial commit (diff)
downloadcst116-ch11-debugging-taylorrog-66ffe8bfc61f9640038514e659dcfc8bcb9b55de.tar.xz
cst116-ch11-debugging-taylorrog-66ffe8bfc61f9640038514e659dcfc8bcb9b55de.zip
Added the Names.txt and changed filepath for report output
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 53830da..34c3b61 100644
--- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
+++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
@@ -81,9 +81,9 @@ int main()
ifstream inFile;
// Notice how this automatically opens the file
- ofstream outFile("C:\\TEMP\\Chap_11_Report.txt");
+ ofstream outFile("C:\\Users\\taylo\\OneDrive\\OIT\\2022_Fall\\CST116\\Week_6\\Chap_11_Report.txt");
- inFile.open("C:\\TEMP\\Chap_11_data.txt");
+ inFile.open("C:\\Users\\taylo\\OneDrive\\OIT\\2022_Fall\\CST116\\Week_6\\Names.txt");
if (inFile.is_open())
{