summaryrefslogtreecommitdiff
path: root/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
diff options
context:
space:
mode:
authortafaar <[email protected]>2022-10-31 21:08:17 -0700
committertafaar <[email protected]>2022-10-31 21:08:17 -0700
commit5be8d83c59a0aae6db5283bae67b8b0673e20cb9 (patch)
tree6b70606af0ce9653223c56d45740c23d04ec91ae /CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
parentdid 2.4 and 2.5 (diff)
downloadcst116-ch11-debugging-hill-5be8d83c59a0aae6db5283bae67b8b0673e20cb9.tar.xz
cst116-ch11-debugging-hill-5be8d83c59a0aae6db5283bae67b8b0673e20cb9.zip
Did 2.7
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp')
-rw-r--r--CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp7
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())
{