diff options
Diffstat (limited to 'CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp')
| -rw-r--r-- | CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp index eb38792..25a5632 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -86,7 +86,7 @@ int main() //inFile.open("C:\\TEMP\\Chap_11_data.txt"); ofstream outFile("C:\\temp\\Chap_11_Report.txt"); - inFile.open("C:\\Users\\pres\\source\\repos\\cst116-ch11-debugging-prestonderek\\Debug11File1.txt"); + inFile.open("C:\\Users\\prest\\source\\repos\\cst116-ch11-debugging-prestonderek\\Debug11File1.txt"); if (inFile.is_open()) { @@ -101,13 +101,13 @@ int main() } else { - cout << "Trouble Opening Input File"; + cout << "Trouble Opening Output File"; cout << "\n\n\t\t ** About to EXIT NOW! ** "; } } else { - cout << "Trouble Opening Output File"; + cout << "Trouble Opening Input File"; cout << "\n\n\t\t ** About to EXIT NOW! ** "; } return 0; |