From e26193a5ec0d90beffee38a4cc27f63021bad9fe Mon Sep 17 00:00:00 2001 From: Musa Ahmed Date: Wed, 12 Oct 2022 12:24:01 -0700 Subject: Added flowchart & renamed --- .../CST116-Ch8-Debugging-Ahmed.cpp | 85 +++++++++++++ .../CST116-Ch8-Debugging-Ahmed.sln | 31 +++++ .../CST116-Ch8-Debugging-Ahmed.txt | 22 ++++ .../CST116-Ch8-Debugging-Ahmed.vcxproj | 141 +++++++++++++++++++++ .../CST116-Ch8-Debugging-Ahmed.vcxproj.filters | 32 +++++ .../CST116-Ch8-Debugging-Ahmed.cpp | 85 ------------- .../CST116-Ch8-Debugging-Ahmed.txt | 22 ---- CST116-Ch8-Debugging/CST116-Ch8-Debugging.sln | 31 ----- CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj | 135 -------------------- .../CST116-Ch8-Debugging.vcxproj.filters | 22 ---- .../CST116-Ch8-Debugging.vcxproj.user | 4 - 11 files changed, 311 insertions(+), 299 deletions(-) create mode 100644 CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.cpp create mode 100644 CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.sln create mode 100644 CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.txt create mode 100644 CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.vcxproj create mode 100644 CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.vcxproj.filters delete mode 100644 CST116-Ch8-Debugging/CST116-Ch8-Debugging-Ahmed.cpp delete mode 100644 CST116-Ch8-Debugging/CST116-Ch8-Debugging-Ahmed.txt delete mode 100644 CST116-Ch8-Debugging/CST116-Ch8-Debugging.sln delete mode 100644 CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj delete mode 100644 CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj.filters delete mode 100644 CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj.user diff --git a/CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.cpp b/CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.cpp new file mode 100644 index 0000000..bd6aed7 --- /dev/null +++ b/CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.cpp @@ -0,0 +1,85 @@ +/******************************************************************** +* File: CST116-Ch8-Debugging.cpp +* +* General Instructions: Complete each step before proceeding to the +* next. +* +* Debugging Exercise 1 +* +* 1) Insert a breakpoint on the lines indicated in the code. +* 2) Run to Breakpoint 1. +* 3) Place a watch on i. +* 4) Execute the while statement by doing a "Step Into". +* 5) The execution continues to the cout statement as expected. +* 6) Step over the cout statement. +* 7) Why didn't the flow of the program return back to the while +* statement? +* There's a semicolon after the while statement so the statement +* which we want to execute is not being repeated since it is not +* included in the while loop. +* 8) Fix this problem by removing the ; after the while statement. +* 9) Stop debugging and repeat Steps 2 – 5 to verify the correction +* worked. +* 10) Stop debugging. +* +* Debugging Exercise 2 +* +* 1) Run to Breakpoint 1. +* 2) Step into the while loop. +* 3) Why did the cout not execute? +* 4) Check the value of i, now check the condition, does the +* condition evaluate to true? +* No it is false, since i cannot be less than 0 unless it is +* a negative number. +* 5) Change the "< 0" to a "< 10". +* 6) Stop debugging and repeat Steps 1 – 4 to verify the correction +* worked. +* 7) Stop debugging. +* +* Debugging Exercise 3 +* +* 1) Run the program without debugging. +* 2) What is happening now is an infinite loop. +* 3) End your program by holding down the Ctrl key and pressing C. +* 4) Fix the problem by adding a "++" after the i in the cout +* statement. +* 5) Run the program to Breakpoint 2 and verify that the output +* displayed on the screen is 0 – 9. +* +* Debugging Exercise 4 +* +* 1) Run to Breakpoint 2. +* 2) Add a watch to the variable count. +* 3) Verify that the contents of count is garbage. +* 4) Step into the loop. +* 5) What is the value stored in count now? +* count = 10 +* 6) Where was 10 assigned to count? +* in the for loop, count is told to iterate until it is no longer +* less than 10. So the for loop statement executes one more time +* than the actual statement. +* 7) Fix the problem and re-run to verify. +********************************************************************/ +#include +using std::cout; +using std::endl; + +int main() +{ + int i = 0; + int count; + + // Breakpoint 1 + // Put a breakpoint on the following line + while (i < 10) { + cout << i++ << endl; + } + + // Breakpoint 2 + // Put a breakpoint on the following line + for (count = 0; count < 10; count++) { + cout << count << endl; + } + + return 0; +} diff --git a/CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.sln b/CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.sln new file mode 100644 index 0000000..d910438 --- /dev/null +++ b/CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.3.32929.385 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CST116-Ch8-Debugging-Ahmed", "CST116-Ch8-Debugging-Ahmed.vcxproj", "{15FB2850-7B95-4328-9080-89F6CEA8E210}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {15FB2850-7B95-4328-9080-89F6CEA8E210}.Debug|x64.ActiveCfg = Debug|x64 + {15FB2850-7B95-4328-9080-89F6CEA8E210}.Debug|x64.Build.0 = Debug|x64 + {15FB2850-7B95-4328-9080-89F6CEA8E210}.Debug|x86.ActiveCfg = Debug|Win32 + {15FB2850-7B95-4328-9080-89F6CEA8E210}.Debug|x86.Build.0 = Debug|Win32 + {15FB2850-7B95-4328-9080-89F6CEA8E210}.Release|x64.ActiveCfg = Release|x64 + {15FB2850-7B95-4328-9080-89F6CEA8E210}.Release|x64.Build.0 = Release|x64 + {15FB2850-7B95-4328-9080-89F6CEA8E210}.Release|x86.ActiveCfg = Release|Win32 + {15FB2850-7B95-4328-9080-89F6CEA8E210}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5F640C9B-2A94-4F3C-8F8E-F75EBEA553BD} + EndGlobalSection +EndGlobal diff --git a/CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.txt b/CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.txt new file mode 100644 index 0000000..2729b53 --- /dev/null +++ b/CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.txt @@ -0,0 +1,22 @@ +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 + +C:\Users\macho\Source\Repos\cst116-chapter8-debugging-M005A\CST116-Ch8-Debugging\x64\Debug\CST116-Ch8-Debugging.exe (process 20580) exited with code 0. \ No newline at end of file diff --git a/CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.vcxproj b/CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.vcxproj new file mode 100644 index 0000000..55000cf --- /dev/null +++ b/CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.vcxproj @@ -0,0 +1,141 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {15fb2850-7b95-4328-9080-89f6cea8e210} + CST116Ch8Debugging + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.vcxproj.filters b/CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.vcxproj.filters new file mode 100644 index 0000000..d1891ee --- /dev/null +++ b/CST116-Ch8-Debugging-Ahmed/CST116-Ch8-Debugging-Ahmed.vcxproj.filters @@ -0,0 +1,32 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Source Files + + + + + Source Files + + + + + Source Files + + + \ No newline at end of file diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging-Ahmed.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging-Ahmed.cpp deleted file mode 100644 index bd6aed7..0000000 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging-Ahmed.cpp +++ /dev/null @@ -1,85 +0,0 @@ -/******************************************************************** -* File: CST116-Ch8-Debugging.cpp -* -* General Instructions: Complete each step before proceeding to the -* next. -* -* Debugging Exercise 1 -* -* 1) Insert a breakpoint on the lines indicated in the code. -* 2) Run to Breakpoint 1. -* 3) Place a watch on i. -* 4) Execute the while statement by doing a "Step Into". -* 5) The execution continues to the cout statement as expected. -* 6) Step over the cout statement. -* 7) Why didn't the flow of the program return back to the while -* statement? -* There's a semicolon after the while statement so the statement -* which we want to execute is not being repeated since it is not -* included in the while loop. -* 8) Fix this problem by removing the ; after the while statement. -* 9) Stop debugging and repeat Steps 2 – 5 to verify the correction -* worked. -* 10) Stop debugging. -* -* Debugging Exercise 2 -* -* 1) Run to Breakpoint 1. -* 2) Step into the while loop. -* 3) Why did the cout not execute? -* 4) Check the value of i, now check the condition, does the -* condition evaluate to true? -* No it is false, since i cannot be less than 0 unless it is -* a negative number. -* 5) Change the "< 0" to a "< 10". -* 6) Stop debugging and repeat Steps 1 – 4 to verify the correction -* worked. -* 7) Stop debugging. -* -* Debugging Exercise 3 -* -* 1) Run the program without debugging. -* 2) What is happening now is an infinite loop. -* 3) End your program by holding down the Ctrl key and pressing C. -* 4) Fix the problem by adding a "++" after the i in the cout -* statement. -* 5) Run the program to Breakpoint 2 and verify that the output -* displayed on the screen is 0 – 9. -* -* Debugging Exercise 4 -* -* 1) Run to Breakpoint 2. -* 2) Add a watch to the variable count. -* 3) Verify that the contents of count is garbage. -* 4) Step into the loop. -* 5) What is the value stored in count now? -* count = 10 -* 6) Where was 10 assigned to count? -* in the for loop, count is told to iterate until it is no longer -* less than 10. So the for loop statement executes one more time -* than the actual statement. -* 7) Fix the problem and re-run to verify. -********************************************************************/ -#include -using std::cout; -using std::endl; - -int main() -{ - int i = 0; - int count; - - // Breakpoint 1 - // Put a breakpoint on the following line - while (i < 10) { - cout << i++ << endl; - } - - // Breakpoint 2 - // Put a breakpoint on the following line - for (count = 0; count < 10; count++) { - cout << count << endl; - } - - return 0; -} diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging-Ahmed.txt b/CST116-Ch8-Debugging/CST116-Ch8-Debugging-Ahmed.txt deleted file mode 100644 index 2729b53..0000000 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging-Ahmed.txt +++ /dev/null @@ -1,22 +0,0 @@ -0 -1 -2 -3 -4 -5 -6 -7 -8 -9 -0 -1 -2 -3 -4 -5 -6 -7 -8 -9 - -C:\Users\macho\Source\Repos\cst116-chapter8-debugging-M005A\CST116-Ch8-Debugging\x64\Debug\CST116-Ch8-Debugging.exe (process 20580) exited with code 0. \ No newline at end of file diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.sln b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.sln deleted file mode 100644 index c7e9663..0000000 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.sln +++ /dev/null @@ -1,31 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.3.32804.467 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CST116-Ch8-Debugging", "CST116-Ch8-Debugging.vcxproj", "{15FB2850-7B95-4328-9080-89F6CEA8E210}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {15FB2850-7B95-4328-9080-89F6CEA8E210}.Debug|x64.ActiveCfg = Debug|x64 - {15FB2850-7B95-4328-9080-89F6CEA8E210}.Debug|x64.Build.0 = Debug|x64 - {15FB2850-7B95-4328-9080-89F6CEA8E210}.Debug|x86.ActiveCfg = Debug|Win32 - {15FB2850-7B95-4328-9080-89F6CEA8E210}.Debug|x86.Build.0 = Debug|Win32 - {15FB2850-7B95-4328-9080-89F6CEA8E210}.Release|x64.ActiveCfg = Release|x64 - {15FB2850-7B95-4328-9080-89F6CEA8E210}.Release|x64.Build.0 = Release|x64 - {15FB2850-7B95-4328-9080-89F6CEA8E210}.Release|x86.ActiveCfg = Release|Win32 - {15FB2850-7B95-4328-9080-89F6CEA8E210}.Release|x86.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {43A2283A-9840-4C06-B7C7-104ED8968443} - EndGlobalSection -EndGlobal diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj deleted file mode 100644 index b7c71c7..0000000 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj +++ /dev/null @@ -1,135 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - Debug - x64 - - - Release - x64 - - - - 16.0 - Win32Proj - {15fb2850-7b95-4328-9080-89f6cea8e210} - CST116Ch8Debugging - 10.0 - - - - Application - true - v143 - Unicode - - - Application - false - v143 - true - Unicode - - - Application - true - v143 - Unicode - - - Application - false - v143 - true - Unicode - - - - - - - - - - - - - - - - - - - - - - Level3 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - - - Console - true - - - - - Level3 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - - - Console - true - true - true - - - - - Level3 - true - _DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - - - Console - true - - - - - Level3 - true - true - true - NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - - - Console - true - true - true - - - - - - - - - \ No newline at end of file diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj.filters b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj.filters deleted file mode 100644 index 3af9a09..0000000 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj.filters +++ /dev/null @@ -1,22 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - \ No newline at end of file diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj.user b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj.user deleted file mode 100644 index 0f14913..0000000 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.vcxproj.user +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file -- cgit v1.2.3