diff options
| author | Bold Demchig <[email protected]> | 2022-11-09 21:55:10 -0800 |
|---|---|---|
| committer | Bold Demchig <[email protected]> | 2022-11-09 21:55:10 -0800 |
| commit | efc8c349edf72c593713012fc71c4a0bd6acedae (patch) | |
| tree | 1ae7d622db016dace5ccf9d00819cd2bef07aac7 | |
| parent | Hello Professor Martha, I had to push my Midterm (diff) | |
| download | cst116-ch11-debugging-batbold74-efc8c349edf72c593713012fc71c4a0bd6acedae.tar.xz cst116-ch11-debugging-batbold74-efc8c349edf72c593713012fc71c4a0bd6acedae.zip | |
| -rw-r--r-- | CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp | 6 | ||||
| -rw-r--r-- | CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj | 1 | ||||
| -rw-r--r-- | CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters | 3 |
3 files changed, 3 insertions, 7 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp index afcde83..3e83fe3 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -7,7 +7,7 @@ * Debugging Exercise 1 * * 1) Make your own data file like Troy 12, with the next person on the -* next line and save it to a directory you create on your drive. +* next line and save it to a directory you create on your drive. * 2) Under the Project menu, select Add Existing Item and * add the input file you just placed on your drive to your * current project. Make sure your Solution Explorer window @@ -80,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()) { diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj index 1c15d13..2073e5b 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj @@ -128,7 +128,6 @@ </ItemDefinitionGroup> <ItemGroup> <ClCompile Include="CST116-Ch11-Debugging.cpp" /> - <ClCompile Include="CST116-Midterm-Bold-Demchig.cpp" /> </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 9003692..2029dc7 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters @@ -18,8 +18,5 @@ <ClCompile Include="CST116-Ch11-Debugging.cpp"> <Filter>Source Files</Filter> </ClCompile> - <ClCompile Include="CST116-Midterm-Bold-Demchig.cpp"> - <Filter>Source Files</Filter> - </ClCompile> </ItemGroup> </Project>
\ No newline at end of file |