From a2dab43a586a88e239b3e28264998870e3080de8 Mon Sep 17 00:00:00 2001 From: Andrei F Date: Tue, 1 Nov 2022 22:38:45 -0700 Subject: Working through first part --- CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | 4 ++-- 1 file changed, 2 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 0e8fe34..84e77eb 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -88,9 +88,9 @@ int main() ifstream inFile; // Notice how this automatically opens the file - ofstream outFile("../Chap_11_Report.txt"); + ofstream outFile("Chap_11_Report.txt"); - inFile.open("../Chap_11_data.txt"); + inFile.open("Chap_11_data.txt"); if (inFile.is_open()) { -- cgit v1.2.3