diff options
| author | Musa Ahmed <[email protected]> | 2022-09-29 16:21:29 -0700 |
|---|---|---|
| committer | Musa Ahmed <[email protected]> | 2022-09-29 16:21:29 -0700 |
| commit | 5c560c989b61c919e9fbfbfca1d4d352719ff0a7 (patch) | |
| tree | 5c52471c24a565d87be1b78081c3ef7a4a4e8b55 | |
| parent | fixed the code (diff) | |
| download | cst116-lab0-debugging-m005a-5c560c989b61c919e9fbfbfca1d4d352719ff0a7.tar.xz cst116-lab0-debugging-m005a-5c560c989b61c919e9fbfbfca1d4d352719ff0a7.zip | |
added output
4 files changed, 12 insertions, 0 deletions
diff --git a/Ch 5 Debugging Project/CST11116-Lab0-Ahmed b/Ch 5 Debugging Project/CST11116-Lab0-Ahmed new file mode 100644 index 0000000..9709ae9 --- /dev/null +++ b/Ch 5 Debugging Project/CST11116-Lab0-Ahmed @@ -0,0 +1,7 @@ +You have $123.45 +Enter percent raise: 0.1 +After your raise you have $135.795 + +C:\Users\macho\Source\Repos\cst116-lab0-debugging-M005A\Ch 5 Debugging Project\x64\Debug\CST116-Debugging-Ahmed.exe (process 15640) 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/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp b/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp index 7d6c472..c04cd17 100644 --- a/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp +++ b/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp @@ -16,6 +16,7 @@ * the current line being that cout statement, Step Into again.
* 6) What happened? Where are we now? What is all of this nasty
* looking code?
+* -
* 7) Remember, stepping into a predefined routine takes you to the
* code for that routine. If the debugger can't find the code it
* will show the assembly code for that routine.
diff --git a/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj b/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj index 53ad340..b1784a0 100644 --- a/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj +++ b/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj @@ -147,6 +147,7 @@ </ItemGroup>
<ItemGroup>
<Text Include="Checklist.txt" />
+ <Text Include="CST11116-Lab0-Ahmed" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
diff --git a/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj.filters b/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj.filters index 1ee9f9e..dd2959d 100644 --- a/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj.filters +++ b/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj.filters @@ -28,5 +28,8 @@ <Text Include="Checklist.txt">
<Filter>Source Files</Filter>
</Text>
+ <Text Include="CST11116-Lab0-Ahmed">
+ <Filter>Source Files</Filter>
+ </Text>
</ItemGroup>
</Project>
\ No newline at end of file |