diff options
| author | Birducken <[email protected]> | 2022-11-07 22:51:19 -0800 |
|---|---|---|
| committer | Birducken <[email protected]> | 2022-11-07 22:51:19 -0800 |
| commit | 716ebc3a9c87b241e5f36ff151d8513965f785cb (patch) | |
| tree | 1849429fbeab551b3a4ac4a814c89fd8b9a1d85c /CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | |
| parent | Added specific file error. (diff) | |
| download | cst116-ch11-debugging-stark-716ebc3a9c87b241e5f36ff151d8513965f785cb.tar.xz cst116-ch11-debugging-stark-716ebc3a9c87b241e5f36ff151d8513965f785cb.zip | |
Finished excersize 2.
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 e8e54d8..2a855bf 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -69,8 +69,8 @@ using std::ofstream; const int EMPLOYEES = 20; const int MAX = 21; -const string inPath = "dat.txt"; -const string outPath = "repor.txt"; +const string inPath = "data.txt"; +const string outPath = "report.txt"; int ReadData(ifstream& inFile, ofstream& outFile, char name[][MAX], int age[]); void WriteOutputFile(ofstream& outFile, char name[][MAX], int age[], |