diff options
| author | tafaar <[email protected]> | 2022-10-31 20:46:23 -0700 |
|---|---|---|
| committer | tafaar <[email protected]> | 2022-10-31 20:46:23 -0700 |
| commit | 838575b7efa1af914bd8e784ed509ccdc55b63fe (patch) | |
| tree | 4e545648fbee2e7f0e0d9c4e57a0be27bfdceda7 /CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | |
| parent | did exercise 1.4 (diff) | |
| download | cst116-ch11-debugging-hill-838575b7efa1af914bd8e784ed509ccdc55b63fe.tar.xz cst116-ch11-debugging-hill-838575b7efa1af914bd8e784ed509ccdc55b63fe.zip | |
edited paths
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp')
| -rw-r--r-- | CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp index 675d5dd..4971562 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -25,6 +25,9 @@ * 5) Update the file paths below to correctly represent the path you * created. * 6) Rebuild and execute the program. +* +* Done +* * 7) Examine the code and the output and notice the use of * parallel arrays. * 8) Add the output file created via the execution of @@ -87,9 +90,9 @@ int main() ifstream inFile; // Notice how this automatically opens the file - ofstream outFile("C:\\TEMP\\Chap_11_Report.txt"); + ofstream outFile("C:\\Users\\Aaron Hill\\Desktop\\Chap11-MyData.txt"); - inFile.open("C:\\TEMP\\Chap_11_data.txt"); + inFile.open("C:\\Users\\Aaron Hill\\Desktop\\Chap11-MyData.txt"); if (inFile.is_open()) { |