diff options
| author | Aaron Hill <[email protected]> | 2022-11-09 15:57:34 -0800 |
|---|---|---|
| committer | Aaron Hill <[email protected]> | 2022-11-09 15:57:34 -0800 |
| commit | 3c141cacd2f4044b6504211b9363eb2fd04023d9 (patch) | |
| tree | fc26f654ca1f7dfe1ffad8ed69b803e7773fead4 /CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | |
| parent | Update cst116-ch11-debugging-flowchart.txt (diff) | |
| download | cst116-ch11-debugging-hill-master.tar.xz cst116-ch11-debugging-hill-master.zip | |
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 8eefc76..51ebbe1 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -108,9 +108,9 @@ int main() ifstream inFile; // Notice how this automatically opens the file - ofstream outFile("C:\\Users\\Aaron Hill\\Desktop\\Chap_11_Report.txt"); + ofstream outFile("Chap_11_Report.txt"); - inFile.open("C:\\Users\\Aaron Hill\\Desktop\\Chap11-MyData.txt"); + inFile.open("Chap11_MyData.txt"); if (inFile.is_open()) { |