summaryrefslogtreecommitdiff
path: root/CST116-Ch11-Debugging/CST116-CH11-Debugging-Havaldar.cpp
diff options
context:
space:
mode:
authorDoolyBoi <[email protected]>2022-11-02 22:19:56 -0700
committerDoolyBoi <[email protected]>2022-11-02 22:19:56 -0700
commiteb7e960fa5c202c7de2391da6552ae3abd29e087 (patch)
treecd8a1248582e0c85c07202df2d540c1df6de7c84 /CST116-Ch11-Debugging/CST116-CH11-Debugging-Havaldar.cpp
parentAdd files via upload (diff)
downloadcst116-ch11-debugging-abd00l4h-master.tar.xz
cst116-ch11-debugging-abd00l4h-master.zip
Fixed and fished exerrciseHEADmaster
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-CH11-Debugging-Havaldar.cpp')
-rw-r--r--CST116-Ch11-Debugging/CST116-CH11-Debugging-Havaldar.cpp4
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())
{