aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author[email protected] <[email protected]>2022-10-12 14:32:02 -0700
committer[email protected] <[email protected]>2022-10-12 14:32:02 -0700
commit6d8dc2a339c1e2bc70fc5555bf2b9407522e14a0 (patch)
treeed7868fb1d7f5ef47739737d14a2e3e160c0299b
parentPush 1 (diff)
downloadcst116-chapter8-debugging-smith-benjamin-6d8dc2a339c1e2bc70fc5555bf2b9407522e14a0.tar.xz
cst116-chapter8-debugging-smith-benjamin-6d8dc2a339c1e2bc70fc5555bf2b9407522e14a0.zip
Final Psuh
-rw-r--r--.gitignore1
-rw-r--r--CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp15
-rw-r--r--CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/CL.command.1.tlogbin0 -> 982 bytes
-rw-r--r--CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/CL.read.1.tlogbin0 -> 19798 bytes
-rw-r--r--CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/CL.write.1.tlogbin0 -> 932 bytes
-rw-r--r--CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/CST116-Ch8-Debugging.lastbuildstate2
-rw-r--r--CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/link.command.1.tlogbin0 -> 1832 bytes
-rw-r--r--CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/link.read.1.tlogbin0 -> 3696 bytes
-rw-r--r--CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/link.write.1.tlogbin0 -> 1012 bytes
-rw-r--r--CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.exebin0 -> 61440 bytes
-rw-r--r--CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.exe.recipe11
-rw-r--r--CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.ilkbin0 -> 630400 bytes
-rw-r--r--CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.log2
-rw-r--r--CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.objbin0 -> 52036 bytes
-rw-r--r--CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.pdbbin0 -> 1486848 bytes
-rw-r--r--CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.vcxproj.FileListAbsolute.txt1
-rw-r--r--CST116-Ch8-Debugging/x64/Debug/vc143.idbbin0 -> 166912 bytes
-rw-r--r--CST116-Ch8-Debugging/x64/Debug/vc143.pdbbin0 -> 397312 bytes
18 files changed, 26 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore
index aaec565..d6f5f4b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
################################################################################
/CST116-Ch8-Debugging/.vs/CST116-Ch8-Debugging
+/.vs/cst116-chapter8-debugging-Smith-Benjamin/v17
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
index 53e4a61..2059456 100644
--- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
+++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
@@ -14,6 +14,7 @@
* 6) Step over the cout statement.
* 7) Why didn't the flow of the program return back to the while
* statement?
+* The while statement had a semicolon, thus ending its loop, before the next line of code began
* 8) Fix this problem by removing the ; after the while statement.
* 9) Stop debugging and repeat Steps 2 � 5 to verify the correction
* worked.
@@ -24,8 +25,10 @@
* 1) Run to Breakpoint 1.
* 2) Step into the while loop.
* 3) Why did the cout not execute?
+* It only outputs when i is less than 0, but it starts as 0
* 4) Check the value of i, now check the condition, does the
* condition evaluate to true?
+* no
* 5) Change the "< 0" to a "< 10".
* 6) Stop debugging and repeat Steps 1 � 4 to verify the correction
* worked.
@@ -40,15 +43,15 @@
* 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?
* 6) Where was 10 assigned to count?
+* It was assigned in the for loop, but the for loop had a semicolon, thus executing the loop seperate from the next line
* 7) Fix the problem and re-run to verify.
********************************************************************/
#include <iostream>
@@ -62,13 +65,13 @@ int main()
// Breakpoint 1
// Put a breakpoint on the following line
- while (i < 0);
- cout << i << endl;
+ while (i < 10)
+ cout << i++ << endl;
// Breakpoint 2
// Put a breakpoint on the following line
- for (count = 0; count < 10; count++);
- cout << count << endl;
+ for (count = 0; count < 10; count++)
+ cout << count << endl;
return 0;
}
diff --git a/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/CL.command.1.tlog b/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..6d35c1a
--- /dev/null
+++ b/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/CL.command.1.tlog
Binary files differ
diff --git a/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/CL.read.1.tlog b/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..2bad515
--- /dev/null
+++ b/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/CL.read.1.tlog
Binary files differ
diff --git a/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/CL.write.1.tlog b/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..50d8c46
--- /dev/null
+++ b/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/CL.write.1.tlog
Binary files differ
diff --git a/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/CST116-Ch8-Debugging.lastbuildstate b/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/CST116-Ch8-Debugging.lastbuildstate
new file mode 100644
index 0000000..5d2243d
--- /dev/null
+++ b/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/CST116-Ch8-Debugging.lastbuildstate
@@ -0,0 +1,2 @@
+PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.33.31629:TargetPlatformVersion=10.0.19041.0:
+Debug|x64|C:\Users\cowpi\Source\Repos\cst116-chapter8-debugging-Smith-Benjamin\CST116-Ch8-Debugging\|
diff --git a/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/link.command.1.tlog b/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/link.command.1.tlog
new file mode 100644
index 0000000..0bdb002
--- /dev/null
+++ b/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/link.command.1.tlog
Binary files differ
diff --git a/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/link.read.1.tlog b/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/link.read.1.tlog
new file mode 100644
index 0000000..81f6a92
--- /dev/null
+++ b/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/link.read.1.tlog
Binary files differ
diff --git a/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/link.write.1.tlog b/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/link.write.1.tlog
new file mode 100644
index 0000000..401b9c5
--- /dev/null
+++ b/CST116-Ch8-Debugging/x64/Debug/CST116-C.15fb2850.tlog/link.write.1.tlog
Binary files differ
diff --git a/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.exe b/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.exe
new file mode 100644
index 0000000..c3ddf18
--- /dev/null
+++ b/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.exe
Binary files differ
diff --git a/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.exe.recipe b/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.exe.recipe
new file mode 100644
index 0000000..2a6ad2e
--- /dev/null
+++ b/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.exe.recipe
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project>
+ <ProjectOutputs>
+ <ProjectOutput>
+ <FullPath>C:\Users\cowpi\Source\Repos\cst116-chapter8-debugging-Smith-Benjamin\CST116-Ch8-Debugging\x64\Debug\CST116-Ch8-Debugging.exe</FullPath>
+ </ProjectOutput>
+ </ProjectOutputs>
+ <ContentFiles />
+ <SatelliteDlls />
+ <NonRecipeFileRefs />
+</Project> \ No newline at end of file
diff --git a/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.ilk b/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.ilk
new file mode 100644
index 0000000..6ec9125
--- /dev/null
+++ b/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.ilk
Binary files differ
diff --git a/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.log b/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.log
new file mode 100644
index 0000000..bc12cff
--- /dev/null
+++ b/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.log
@@ -0,0 +1,2 @@
+ CST116-Ch8-Debugging.cpp
+ CST116-Ch8-Debugging.vcxproj -> C:\Users\cowpi\Source\Repos\cst116-chapter8-debugging-Smith-Benjamin\CST116-Ch8-Debugging\x64\Debug\CST116-Ch8-Debugging.exe
diff --git a/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.obj b/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.obj
new file mode 100644
index 0000000..6dcdc83
--- /dev/null
+++ b/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.obj
Binary files differ
diff --git a/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.pdb b/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.pdb
new file mode 100644
index 0000000..68db60a
--- /dev/null
+++ b/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.pdb
Binary files differ
diff --git a/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.vcxproj.FileListAbsolute.txt b/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.vcxproj.FileListAbsolute.txt
new file mode 100644
index 0000000..a015c24
--- /dev/null
+++ b/CST116-Ch8-Debugging/x64/Debug/CST116-Ch8-Debugging.vcxproj.FileListAbsolute.txt
@@ -0,0 +1 @@
+C:\Users\cowpi\source\repos\cst116-chapter8-debugging-Smith-Benjamin\CST116-Ch8-Debugging\x64\Debug\CST116-Ch8-Debugging.exe
diff --git a/CST116-Ch8-Debugging/x64/Debug/vc143.idb b/CST116-Ch8-Debugging/x64/Debug/vc143.idb
new file mode 100644
index 0000000..52b4260
--- /dev/null
+++ b/CST116-Ch8-Debugging/x64/Debug/vc143.idb
Binary files differ
diff --git a/CST116-Ch8-Debugging/x64/Debug/vc143.pdb b/CST116-Ch8-Debugging/x64/Debug/vc143.pdb
new file mode 100644
index 0000000..c1c8ef8
--- /dev/null
+++ b/CST116-Ch8-Debugging/x64/Debug/vc143.pdb
Binary files differ