diff options
| author | Evan <[email protected]> | 2022-11-02 14:31:09 -0700 |
|---|---|---|
| committer | Evan <[email protected]> | 2022-11-02 14:31:09 -0700 |
| commit | 54e4b1178e48fc749478570024dc97b567000b97 (patch) | |
| tree | 70b5b47a38fd7f93451b4477662288a127fe12cd /CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | |
| parent | as (diff) | |
| download | cst116-ch11-debugging-evanmihm-54e4b1178e48fc749478570024dc97b567000b97.tar.xz cst116-ch11-debugging-evanmihm-54e4b1178e48fc749478570024dc97b567000b97.zip | |
bn
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp')
| -rw-r--r-- | CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp index 74653e8..3f8732e 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -14,6 +14,7 @@ * current project. Make sure your Solution Explorer window * is visible. If not, you can display it by selecting Solution * 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. @@ -82,9 +83,9 @@ int main() ifstream inFile; // Notice how this automatically opens the file - ofstream outFile("C:\\TEMP\\Chap_11_Report.txt"); + ofstream outFile("C:\\Users\\iceag\\source\\CHPT11.txt"); - inFile.open("C:\\TEMP\\Chap_11_data.txt"); + inFile.open("C:\\Users\\iceag\\source\\CHPT11.txt"); if (inFile.is_open()) { |