summaryrefslogtreecommitdiff
path: root/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
diff options
context:
space:
mode:
authorBold Demchig <[email protected]>2022-11-02 20:55:52 -0700
committerBold Demchig <[email protected]>2022-11-02 20:55:52 -0700
commite3a548321784429e3a2dc0bbf2de7fccf13da001 (patch)
tree04e542dd16a71176b00c0230374f42f167f1ae72 /CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
parentInitial commit (diff)
downloadcst116-ch11-debugging-batbold74-e3a548321784429e3a2dc0bbf2de7fccf13da001.tar.xz
cst116-ch11-debugging-batbold74-e3a548321784429e3a2dc0bbf2de7fccf13da001.zip
Hello Professor Martha, I had to push my Midterm
Exam here. I could not get into Canvas.!
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp')
-rw-r--r--CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
index 53830da..afcde83 100644
--- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
+++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
@@ -68,8 +68,7 @@ const int EMPLOYEES = 20;
const int MAX = 21;
int ReadData(ifstream& inFile, ofstream& outFile, char name[][MAX], int age[]);
-void WriteOutputFile(ofstream& outFile, char name[][MAX], int age[],
- int counter);
+void WriteOutputFile(ofstream& outFile, char name[][MAX], int age[], int counter);
void PrintTotalsAndSummary(ofstream& out, int totalRecords);
int main()
@@ -81,9 +80,9 @@ int main()
ifstream inFile;
// Notice how this automatically opens the file
- ofstream outFile("C:\\TEMP\\Chap_11_Report.txt");
+ ofstream outFile("C:\TEMP\Chap_11_Report.txt");
- inFile.open("C:\\TEMP\\Chap_11_data.txt");
+ inFile.open("C:\TEMP\Chap_11_data.txt");
if (inFile.is_open())
{