From 48e6f576cb17d8e3c13090e47097c2e6dfc0289e Mon Sep 17 00:00:00 2001 From: huntbyrne <114624182+huntbyrne@users.noreply.github.com> Date: Thu, 3 Nov 2022 15:24:23 -0700 Subject: Update CST116-Ch11-Debugging.cpp --- CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp index 53830da..231a2de 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -81,9 +81,9 @@ int main() ifstream inFile; // Notice how this automatically opens the file - ofstream outFile("C:\\TEMP\\Chap_11_Report.txt"); + ofstream outFile("C:\\Users\\Hunter\\Desktop\\Ch11DataFile"); - inFile.open("C:\\TEMP\\Chap_11_data.txt"); + inFile.open("C:\\Users\\Hunter\\Desktop\\Ch11DataFile"); if (inFile.is_open()) { -- cgit v1.2.3