summaryrefslogtreecommitdiff
path: root/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp')
-rw-r--r--CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
index 4ecd4d1..98c776a 100644
--- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
+++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
@@ -8,13 +8,11 @@
*
* 1) Make your own data file like Troy 12, with the next person on the
* 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
* current project. Make sure your Solution Explorer window
* is visible. If not, you can display it by selecting Solution
-* Explorer (or Ctrl+Alt+L).
-*
+* Explorer (or Ctrl+Alt+L)
* 3) Open the input file by simply double clicking the name of the
* file in your Solution Explorer.
* 4) Build and execute the program.
@@ -83,11 +81,11 @@ int main()
ifstream Input;
// Notice how this automatically opens the file
- ofstream Output("C:\\TEMP\\Chap_11_Report.txt");
+ ofstream Output("C:\\Users\\iceag\\source\\TestO.txt");
//C:\\Users\\iceag\\source\\CHPT11I.txt
- Input.open("C:\\TEMP\\Chap_11_data.txt");
+ Input.open("C:\\Users\\iceag\\source\\TestI.txt");
if (Input.is_open())
{