diff options
| author | Taylor Rogers <[email protected]> | 2022-11-01 08:59:17 -0700 |
|---|---|---|
| committer | Taylor Rogers <[email protected]> | 2022-11-01 08:59:17 -0700 |
| commit | 66ffe8bfc61f9640038514e659dcfc8bcb9b55de (patch) | |
| tree | 6b32083c9c5c2e41b6ecf8acfd9287bf88f7d6d6 /CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | |
| parent | Initial commit (diff) | |
| download | cst116-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.cpp | 4 |
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()) { |