From 5be8d83c59a0aae6db5283bae67b8b0673e20cb9 Mon Sep 17 00:00:00 2001 From: tafaar Date: Mon, 31 Oct 2022 21:08:17 -0700 Subject: Did 2.7 --- CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp') 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()) { -- cgit v1.2.3