summaryrefslogtreecommitdiff
path: root/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
diff options
context:
space:
mode:
author[email protected] <[email protected]>2022-11-09 16:27:44 -0800
committer[email protected] <[email protected]>2022-11-09 16:27:44 -0800
commitb245e24ebed4873f615ff91259f0959edfc21b9b (patch)
tree2c6e74c34a221815743d35707dbb0b3119c1d562 /CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
parentInitial commit (diff)
downloadcst116-ch11-debugging-smith-benjamin-master.tar.xz
cst116-ch11-debugging-smith-benjamin-master.zip
Tis a PushHEADmaster
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp')
-rw-r--r--CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
index 53830da..8f833a7 100644
--- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
+++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
@@ -6,7 +6,7 @@
*
* Debugging Exercise 1
*
-* 1) Make your own data file like Troy 12, with the next person on the
+* 1) Make your own data file like Troy 12, with the next person on then
* next line and save it to a directory you create on your drive.
* 2) Under the Project menu, select Add Existing Item and
* add the input file you just placed on your drive to your
@@ -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:\\Homework\\Text Files\\Output_names_and_ages.txt");
- inFile.open("C:\\TEMP\\Chap_11_data.txt");
+ inFile.open("C:\\Homework\\Text Files\\Input_names_and_ages.txt");
if (inFile.is_open())
{