diff options
| author | jacobdw22 <[email protected]> | 2022-10-29 14:15:05 -0700 |
|---|---|---|
| committer | jacobdw22 <[email protected]> | 2022-10-29 14:15:05 -0700 |
| commit | b46bdfce6718e8ff9fa415a264941edd961145d6 (patch) | |
| tree | d7987bd3d4f048e1a589d3b1ad190f8894e59f61 /CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | |
| parent | Added name, course, date, and title to the top of the file. (diff) | |
| download | cst116-ch11-debugging-jacobdw22-b46bdfce6718e8ff9fa415a264941edd961145d6.tar.xz cst116-ch11-debugging-jacobdw22-b46bdfce6718e8ff9fa415a264941edd961145d6.zip | |
Changed file name in code to TEMP1 rather than TEMP
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp')
| -rw-r--r-- | CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp index ea37b31..974355d 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -82,9 +82,9 @@ int main() ifstream inFile; // Notice how this automatically opens the file - ofstream outFile("C:\\TEMP\\Chap_11_Report.txt"); + ofstream outFile("C:\\TEMP1\\Chap_11_Report.txt"); - inFile.open("C:\\TEMP\\Chap_11_data.txt"); + inFile.open("C:\\TEMP1\\Chap_11_data.txt"); if (inFile.is_open()) { |