diff options
| author | [email protected] <[email protected]> | 2022-10-20 20:12:36 -0700 |
|---|---|---|
| committer | [email protected] <[email protected]> | 2022-10-20 20:12:36 -0700 |
| commit | 1d72e28df6857b84d353becf814ca58548964f86 (patch) | |
| tree | a7bccaa5ffb5c7bacaf48b02b081359053334923 | |
| parent | I am a push (diff) | |
| download | cst116-ch10-debugging-smith-benjamin-1d72e28df6857b84d353becf814ca58548964f86.tar.xz cst116-ch10-debugging-smith-benjamin-1d72e28df6857b84d353becf814ca58548964f86.zip | |
John Lenon was not my president
18 files changed, 20 insertions, 3 deletions
@@ -3,3 +3,4 @@ ################################################################################ /.vs/cst116-ch10-debugging-Smith-Benjamin/v17 +/CST116-Ch10-Debugging/.vs/CST116-Ch10-Debugging diff --git a/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp b/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp index 1e3d58b..a2831ed 100644 --- a/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp +++ b/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp @@ -84,11 +84,11 @@ void FunctionTwo(const int varX[], const int varY[], int varZ[]); void PrintFunction(const int varX[], const int varY[],
const int varZ[]);
-const int SIZE = 5;
+const int SIZE = 10;
int main()
{
- int varX[5];
+ int varX[SIZE];
int varY[SIZE];
int varZ[SIZE]; // Notice how we used the const here!
@@ -126,7 +126,7 @@ void FunctionOne(int varX[], int varY[]) // Put breakpoint on the following line
varX[x] = x;
- for (int x = 0; x < 5; x++)
+ for (int x = 0; x < SIZE; x++)
varY[x] = x + 100;
}
void FunctionTwo(const int varX[], const int varY[], int varZ[])
diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.command.1.tlog b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.command.1.tlog Binary files differnew file mode 100644 index 0000000..f513665 --- /dev/null +++ b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.command.1.tlog diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.read.1.tlog b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.read.1.tlog Binary files differnew file mode 100644 index 0000000..327e2f0 --- /dev/null +++ b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.read.1.tlog diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.write.1.tlog b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.write.1.tlog Binary files differnew file mode 100644 index 0000000..d47fe49 --- /dev/null +++ b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CL.write.1.tlog diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CST116-Ch10-Debugging.lastbuildstate b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CST116-Ch10-Debugging.lastbuildstate new file mode 100644 index 0000000..e838982 --- /dev/null +++ b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/CST116-Ch10-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-ch10-debugging-Smith-Benjamin\CST116-Ch10-Debugging\| diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.command.1.tlog b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.command.1.tlog Binary files differnew file mode 100644 index 0000000..a0ba0b7 --- /dev/null +++ b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.command.1.tlog diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.read.1.tlog b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.read.1.tlog Binary files differnew file mode 100644 index 0000000..4f7bdbe --- /dev/null +++ b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.read.1.tlog diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.write.1.tlog b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.write.1.tlog Binary files differnew file mode 100644 index 0000000..87e6b94 --- /dev/null +++ b/CST116-Ch10-Debugging/x64/Debug/CST116-C.25de9f3e.tlog/link.write.1.tlog diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.exe b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.exe Binary files differnew file mode 100644 index 0000000..a67378d --- /dev/null +++ b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.exe diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.exe.recipe b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.exe.recipe new file mode 100644 index 0000000..d0368b1 --- /dev/null +++ b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.exe.recipe @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project> + <ProjectOutputs> + <ProjectOutput> + <FullPath>C:\Users\cowpi\Source\Repos\cst116-ch10-debugging-Smith-Benjamin\CST116-Ch10-Debugging\x64\Debug\CST116-Ch10-Debugging.exe</FullPath> + </ProjectOutput> + </ProjectOutputs> + <ContentFiles /> + <SatelliteDlls /> + <NonRecipeFileRefs /> +</Project>
\ No newline at end of file diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.ilk b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.ilk Binary files differnew file mode 100644 index 0000000..4749a13 --- /dev/null +++ b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.ilk diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.log b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.log new file mode 100644 index 0000000..74d89bf --- /dev/null +++ b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.log @@ -0,0 +1,2 @@ + CST116-Ch10-Debugging.cpp + CST116-Ch10-Debugging.vcxproj -> C:\Users\cowpi\Source\Repos\cst116-ch10-debugging-Smith-Benjamin\CST116-Ch10-Debugging\x64\Debug\CST116-Ch10-Debugging.exe diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.obj b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.obj Binary files differnew file mode 100644 index 0000000..a2074bc --- /dev/null +++ b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.obj diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.pdb b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.pdb Binary files differnew file mode 100644 index 0000000..123c0ac --- /dev/null +++ b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.pdb diff --git a/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.vcxproj.FileListAbsolute.txt b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.vcxproj.FileListAbsolute.txt new file mode 100644 index 0000000..b607046 --- /dev/null +++ b/CST116-Ch10-Debugging/x64/Debug/CST116-Ch10-Debugging.vcxproj.FileListAbsolute.txt @@ -0,0 +1 @@ +C:\Users\cowpi\source\repos\cst116-ch10-debugging-Smith-Benjamin\CST116-Ch10-Debugging\x64\Debug\CST116-Ch10-Debugging.exe diff --git a/CST116-Ch10-Debugging/x64/Debug/vc143.idb b/CST116-Ch10-Debugging/x64/Debug/vc143.idb Binary files differnew file mode 100644 index 0000000..afd94f2 --- /dev/null +++ b/CST116-Ch10-Debugging/x64/Debug/vc143.idb diff --git a/CST116-Ch10-Debugging/x64/Debug/vc143.pdb b/CST116-Ch10-Debugging/x64/Debug/vc143.pdb Binary files differnew file mode 100644 index 0000000..f9c2d59 --- /dev/null +++ b/CST116-Ch10-Debugging/x64/Debug/vc143.pdb |