summaryrefslogtreecommitdiff
path: root/CST116-Ch11-Debugging
diff options
context:
space:
mode:
Diffstat (limited to 'CST116-Ch11-Debugging')
-rw-r--r--CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp9
-rw-r--r--CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj3
-rw-r--r--CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters3
3 files changed, 8 insertions, 7 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
index a0295db..ffbcaa4 100644
--- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
+++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp
@@ -68,8 +68,10 @@ 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 PrintTotalsAndSummary(ofstream& out, int totalRecords);
int main()
@@ -78,12 +80,13 @@ int main()
int age[EMPLOYEES];
int record_counter(0);
- ifstream inFile("C:\\TEMP\\Chap_11_Report.txt");
+ ifstream inFile;
// Notice how this automatically opens the file
- ofstream outFile;
+ ofstream outFile("C:\\TEMP\\names.txt");
+
+ inFile.open("C:\\TEMP\\names.txt");
- inFile.open("C:\\TEMP\\Chap_11_data.txt");
if (inFile.is_open())
{
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj
index 05b57a1..0cbd5a6 100644
--- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj
+++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj
@@ -130,8 +130,7 @@
<ClCompile Include="CST116-Ch11-Debugging.cpp" />
</ItemGroup>
<ItemGroup>
- <Text Include="..\TEMP\Chap_11_Report.txt" />
- <Text Include="TEMP\Chap_11_data.txt" />
+ <Text Include="..\TEMP\names.txt" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters
index d1bbc46..43b6186 100644
--- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters
+++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters
@@ -20,7 +20,6 @@
</ClCompile>
</ItemGroup>
<ItemGroup>
- <Text Include="TEMP\Chap_11_data.txt" />
- <Text Include="..\TEMP\Chap_11_Report.txt" />
+ <Text Include="..\TEMP\names.txt" />
</ItemGroup>
</Project> \ No newline at end of file