diff options
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp')
| -rw-r--r-- | CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp index 24ae3fa..acbacf0 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -68,6 +68,9 @@ * 6) Rebuild and execute your program to verify that your messages * are correct. * 7) Correct the path names. +* +* Done +* * 8) Build and execute your code and carefully check your * output on both the console and in the output file. * @@ -101,9 +104,9 @@ int main() ifstream inFile; // Notice how this automatically opens the file - ofstream outFile("C:\\Users\\Aaron Hill\\Desktop\\Chap_11_Report.txxt"); + ofstream outFile("C:\\Users\\Aaron Hill\\Desktop\\Chap_11_Report.txt"); - inFile.open("C:\\Users\\Aaron Hill\\Desktop\\Chap11-MyData.txxt"); + inFile.open("C:\\Users\\Aaron Hill\\Desktop\\Chap11-MyData.txt"); if (inFile.is_open()) { |