From eb7e960fa5c202c7de2391da6552ae3abd29e087 Mon Sep 17 00:00:00 2001 From: DoolyBoi Date: Wed, 2 Nov 2022 22:19:56 -0700 Subject: Fixed and fished exerrcise --- CST116-Ch11-Debugging/CST116-CH11-Debugging-Havaldar.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CST116-Ch11-Debugging') 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()) { -- cgit v1.2.3