diff options
| author | Wyatt <[email protected]> | 2022-11-08 19:39:53 -0800 |
|---|---|---|
| committer | Wyatt <[email protected]> | 2022-11-08 19:39:53 -0800 |
| commit | 2e7082ea7f537a4386c9602e7cf4e6f0513a7d6f (patch) | |
| tree | 3d735ecdc0cdc2a577ba052b1d73871cf337ac3b /CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | |
| parent | changes the paths (diff) | |
| download | cst116-ch11-debugging-johnson-2e7082ea7f537a4386c9602e7cf4e6f0513a7d6f.tar.xz cst116-ch11-debugging-johnson-2e7082ea7f537a4386c9602e7cf4e6f0513a7d6f.zip | |
done
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp')
| -rw-r--r-- | CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | 6 |
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 6c9df83..aa8d436 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -81,7 +81,7 @@ int main() ifstream inFile; // Notice how this automatically opens the file - ofstream outFile("C:\\Users\\wythe\\source\\repos\\cst116-ch11-debugging-johnson\\Chapter_11_data_2.txt"); + ofstream outFile("C:\\Users\\wythe\\source\\repos\\cst116-ch11-debugging-johnson\\output.txt"); inFile.open("C:\\Users\\wythe\\source\\repos\\cst116-ch11-debugging-johnson\\Chapter_11_data_2.txt"); @@ -98,13 +98,13 @@ int main() } else { - cout << "Trouble Opening File"; + cout << "Trouble Opening File, Out File."; cout << "\n\n\t\t ** About to EXIT NOW! ** "; } } else { - cout << "Trouble Opening File"; + cout << "Trouble Opening File, Input File."; cout << "\n\n\t\t ** About to EXIT NOW! ** "; } return 0; |