summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhuntbyrne <[email protected]>2022-11-03 15:24:23 -0700
committerGitHub <[email protected]>2022-11-03 15:24:23 -0700
commit48e6f576cb17d8e3c13090e47097c2e6dfc0289e (patch)
tree9c8a23900a2517d8602ce5df55350b9dc8a5bfee
parentInitial commit (diff)
downloadcst116-ch11-debugging-huntbyrne-48e6f576cb17d8e3c13090e47097c2e6dfc0289e.tar.xz
cst116-ch11-debugging-huntbyrne-48e6f576cb17d8e3c13090e47097c2e6dfc0289e.zip
Update CST116-Ch11-Debugging.cpp
-rw-r--r--CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp4
1 files 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())
{