summaryrefslogtreecommitdiff
path: root/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
diff options
context:
space:
mode:
authortafaar <[email protected]>2022-10-31 20:46:23 -0700
committertafaar <[email protected]>2022-10-31 20:46:23 -0700
commit838575b7efa1af914bd8e784ed509ccdc55b63fe (patch)
tree4e545648fbee2e7f0e0d9c4e57a0be27bfdceda7 /CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
parentdid exercise 1.4 (diff)
downloadcst116-ch11-debugging-hill-838575b7efa1af914bd8e784ed509ccdc55b63fe.tar.xz
cst116-ch11-debugging-hill-838575b7efa1af914bd8e784ed509ccdc55b63fe.zip
edited paths
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp')
-rw-r--r--CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
index 675d5dd..4971562 100644
--- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
+++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
@@ -25,6 +25,9 @@
* 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
@@ -87,9 +90,9 @@ int main()
ifstream inFile;
// Notice how this automatically opens the file
- ofstream outFile("C:\\TEMP\\Chap_11_Report.txt");
+ ofstream outFile("C:\\Users\\Aaron Hill\\Desktop\\Chap11-MyData.txt");
- inFile.open("C:\\TEMP\\Chap_11_data.txt");
+ inFile.open("C:\\Users\\Aaron Hill\\Desktop\\Chap11-MyData.txt");
if (inFile.is_open())
{