diff options
| author | Taylor Rogers <[email protected]> | 2022-11-01 09:10:32 -0700 |
|---|---|---|
| committer | Taylor Rogers <[email protected]> | 2022-11-01 09:10:32 -0700 |
| commit | bbb879042bea324369868a81752f96257270686e (patch) | |
| tree | 6eb3299b8fde2d98c3a0f837cb060dc87c0bd211 | |
| parent | Finished Exercise (diff) | |
| download | cst116-ch11-debugging-taylorrog-bbb879042bea324369868a81752f96257270686e.tar.xz cst116-ch11-debugging-taylorrog-bbb879042bea324369868a81752f96257270686e.zip | |
Added output text file
3 files changed, 15 insertions, 0 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging-Output-Rogers.txt b/CST116-Ch11-Debugging/CST116-Ch11-Debugging-Output-Rogers.txt new file mode 100644 index 0000000..1c08563 --- /dev/null +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging-Output-Rogers.txt @@ -0,0 +1,13 @@ +Taylor 32 +Bob 50 +Sally 14 +Jeff 31 +Tom 23 + + + ** Total Records: 5 ** + The End + +C:\Users\taylo\OneDrive\OIT\2022_Fall\CST116\VS_Files\Repos\CST116\cst116-ch11-debugging-Taylorrog\x64\Debug\CST116-Ch11-Debugging.exe (process 28000) exited with code 0. +To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops. +Press any key to close this window . . .
\ No newline at end of file diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj index 4856308..97b7ecf 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj @@ -132,6 +132,7 @@ <ItemGroup> <Text Include="..\..\..\..\..\Week_6\Chap_11_Report.txt" /> <Text Include="..\..\..\..\..\Week_6\Names.txt" /> + <Text Include="CST116-Ch11-Debugging-Output-Rogers.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 25f90f0..a405d5d 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters @@ -22,5 +22,6 @@ <ItemGroup> <Text Include="..\..\..\..\..\Week_6\Names.txt" /> <Text Include="..\..\..\..\..\Week_6\Chap_11_Report.txt" /> + <Text Include="CST116-Ch11-Debugging-Output-Rogers.txt" /> </ItemGroup> </Project>
\ No newline at end of file |