From f640d7f4016d756de7ff873829348bbb79d997ee Mon Sep 17 00:00:00 2001 From: Joe Traver Date: Wed, 9 Nov 2022 22:03:29 -0800 Subject: Tested program --- CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 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 be16f31..d2a70d5 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -16,8 +16,6 @@ * 3) Open the input file by simply double clicking the name of the * file in your Solution Explorer. * 4) Build and execute the program. -* -* * 5) Update the file paths below to correctly represent the path you * created. * 6) Rebuild and execute the program. @@ -85,7 +83,7 @@ int main() // Notice how this automatically opens the file ofstream outFile("C:\\TEMP\\Chap_11_Report.txt"); - inFile.open("C:\\TEMP\\Chap_11_data.txt"); + inFile.open("C:\\TEMP\\Chap_11_data_JT.txt"); if (inFile.is_open()) { -- cgit v1.2.3