diff options
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp')
| -rw-r--r-- | CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp index afcde83..3e83fe3 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -7,7 +7,7 @@ * Debugging Exercise 1 * * 1) Make your own data file like Troy 12, with the next person on the -* next line and save it to a directory you create on your drive. +* next line and save it to a directory you create on your drive. * 2) Under the Project menu, select Add Existing Item and * add the input file you just placed on your drive to your * current project. Make sure your Solution Explorer window @@ -80,9 +80,9 @@ int main() ifstream inFile; // Notice how this automatically opens the file - ofstream outFile("C:\TEMP\Chap_11_Report.txt"); + ofstream outFile("C:\\TEMP\\Chap_11_Report.txt"); - inFile.open("C:\TEMP\Chap_11_data.txt"); + inFile.open("C:\\TEMP\\Chap_11_data.txt"); if (inFile.is_open()) { |