summaryrefslogtreecommitdiff
path: root/CST116-Ch11-Debugging
diff options
context:
space:
mode:
authortafaar <[email protected]>2022-10-31 20:54:12 -0700
committertafaar <[email protected]>2022-10-31 20:54:12 -0700
commit6378a6c1af0068c5cf3f6c61cd91ca646f7f3224 (patch)
tree88bad0d6e69608235e2c19342dceb85cde131f0f /CST116-Ch11-Debugging
parentedited paths (diff)
downloadcst116-ch11-debugging-hill-6378a6c1af0068c5cf3f6c61cd91ca646f7f3224.tar.xz
cst116-ch11-debugging-hill-6378a6c1af0068c5cf3f6c61cd91ca646f7f3224.zip
fixed pathing errors
Diffstat (limited to 'CST116-Ch11-Debugging')
-rw-r--r--CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp11
1 files changed, 4 insertions, 7 deletions
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");