diff options
| author | DoolyBoi <[email protected]> | 2022-11-02 22:19:56 -0700 |
|---|---|---|
| committer | DoolyBoi <[email protected]> | 2022-11-02 22:19:56 -0700 |
| commit | eb7e960fa5c202c7de2391da6552ae3abd29e087 (patch) | |
| tree | cd8a1248582e0c85c07202df2d540c1df6de7c84 | |
| parent | Add files via upload (diff) | |
| download | cst116-ch11-debugging-abd00l4h-eb7e960fa5c202c7de2391da6552ae3abd29e087.tar.xz cst116-ch11-debugging-abd00l4h-eb7e960fa5c202c7de2391da6552ae3abd29e087.zip | |
| -rw-r--r-- | CST116-Ch11-Debugging/CST116-CH11-Debugging-Havaldar.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CST116-Ch11-Debugging/CST116-CH11-Debugging-Havaldar.cpp b/CST116-Ch11-Debugging/CST116-CH11-Debugging-Havaldar.cpp index 9ff09a4..10d1495 100644 --- a/CST116-Ch11-Debugging/CST116-CH11-Debugging-Havaldar.cpp +++ b/CST116-Ch11-Debugging/CST116-CH11-Debugging-Havaldar.cpp @@ -81,9 +81,9 @@ int main() ifstream inFile; // Notice how this automatically opens the file - ofstream outFile("C:\\Users\\haval\\OneDrive\\Documents\\ch11OutputFile.txt"); + ofstream outFile("C:\\Users\\haval\\OneDrive\\Documents\\CST116-CH11-Debugging-Output.txt"); - inFile.open("C:\\Users\\haval\\OneDrive\\Documents\\ch11InputFile.txt"); + inFile.open("C:\\Users\\haval\\OneDrive\\Documents\\CST116-CH11-Debugging-Input.txt"); if (inFile.is_open()) { |