From 6378a6c1af0068c5cf3f6c61cd91ca646f7f3224 Mon Sep 17 00:00:00 2001 From: tafaar Date: Mon, 31 Oct 2022 20:54:12 -0700 Subject: fixed pathing errors --- CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'CST116-Ch11-Debugging') diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp index 4971562..77c3b72 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -19,15 +19,12 @@ * 3) Open the input file by simply double clicking the name of the * file in your Solution Explorer. * 4) Build and execute the program. -* -* Done -* + +* Done + * 5) Update the file paths below to correctly represent the path you * created. * 6) Rebuild and execute the program. -* -* Done -* * 7) Examine the code and the output and notice the use of * parallel arrays. * 8) Add the output file created via the execution of @@ -90,7 +87,7 @@ int main() ifstream inFile; // Notice how this automatically opens the file - ofstream outFile("C:\\Users\\Aaron Hill\\Desktop\\Chap11-MyData.txt"); + ofstream outFile("C:\\Users\\Aaron Hill\\Desktop\\Chap_11_Report.txt"); inFile.open("C:\\Users\\Aaron Hill\\Desktop\\Chap11-MyData.txt"); -- cgit v1.2.3