diff options
Diffstat (limited to 'CST116-Ch11-Debugging')
| -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()) { |