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