diff options
| author | Trevor Bouchillon <[email protected]> | 2022-10-02 13:49:52 -0700 |
|---|---|---|
| committer | Trevor Bouchillon <[email protected]> | 2022-10-02 13:49:52 -0700 |
| commit | 2413ee7c467ae17c782f3a3a5ea11f890942cb53 (patch) | |
| tree | 7237a524a464eb880268e76579b976918c7ced4f | |
| parent | Debugging Exercise 2- Done (diff) | |
| download | cst116-ch6-debugging-trevor-bouchillon-2413ee7c467ae17c782f3a3a5ea11f890942cb53.tar.xz cst116-ch6-debugging-trevor-bouchillon-2413ee7c467ae17c782f3a3a5ea11f890942cb53.zip | |
Debug Done
26 files changed, 25 insertions, 2 deletions
diff --git a/.vs/cst116-ch6-debugging-DaBoochillin/v17/.suo b/.vs/cst116-ch6-debugging-DaBoochillin/v17/.suo Binary files differnew file mode 100644 index 0000000..fcf31cb --- /dev/null +++ b/.vs/cst116-ch6-debugging-DaBoochillin/v17/.suo diff --git a/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/FileContentIndex/c8b35df0-3ee0-497b-ac9c-eaa22681bbc2.vsidx b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/FileContentIndex/c8b35df0-3ee0-497b-ac9c-eaa22681bbc2.vsidx Binary files differnew file mode 100644 index 0000000..d8d5f74 --- /dev/null +++ b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/FileContentIndex/c8b35df0-3ee0-497b-ac9c-eaa22681bbc2.vsidx diff --git a/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/FileContentIndex/read.lock b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/FileContentIndex/read.lock new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/FileContentIndex/read.lock diff --git a/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/.suo b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/.suo Binary files differnew file mode 100644 index 0000000..316d67c --- /dev/null +++ b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/.suo diff --git a/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/Browse.VC.db b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/Browse.VC.db Binary files differnew file mode 100644 index 0000000..d086dc2 --- /dev/null +++ b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/Browse.VC.db diff --git a/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/Browse.VC.db-shm b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/Browse.VC.db-shm Binary files differnew file mode 100644 index 0000000..99c3ba4 --- /dev/null +++ b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/Browse.VC.db-shm diff --git a/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/Browse.VC.db-wal b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/Browse.VC.db-wal new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/Browse.VC.db-wal diff --git a/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/ipch/AutoPCH/a9e190fd5f1c9c97/CST116-CH6-DEBUGGING.ipch b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/ipch/AutoPCH/a9e190fd5f1c9c97/CST116-CH6-DEBUGGING.ipch Binary files differnew file mode 100644 index 0000000..1d7825f --- /dev/null +++ b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/ipch/AutoPCH/a9e190fd5f1c9c97/CST116-CH6-DEBUGGING.ipch diff --git a/CST116-Ch6-Debugging/CST116-Ch6-Debugging.cpp b/CST116-Ch6-Debugging/CST116-Ch6-Debugging.cpp index 497e2f8..d946bf5 100644 --- a/CST116-Ch6-Debugging/CST116-Ch6-Debugging.cpp +++ b/CST116-Ch6-Debugging/CST116-Ch6-Debugging.cpp @@ -1,6 +1,9 @@ /********************************************************************
* File: CST116-Ch6-Debugging.cpp
*
+* Trevor Bouchillon
+* Chap 6 Debugging
+*
* General Instructions: Complete each step before proceeding to the
* next.
*
@@ -51,8 +54,7 @@ int main() // Breakpoint 1
// Put a breakpoint on the following line
- celcius = 5 / 9 * fahrenheit - 32;
-
+ celcius = (float(5) / float(9)) * (fahrenheit - 32);
cout << fahrenheit << " degrees F = "
<< celcius << " degrees C" << endl;
diff --git a/CST116-Ch6-Debugging/Output-Build.txt b/CST116-Ch6-Debugging/Output-Build.txt new file mode 100644 index 0000000..d7af037 --- /dev/null +++ b/CST116-Ch6-Debugging/Output-Build.txt @@ -0,0 +1,5 @@ +Build started... +1>------ Build started: Project: CST116-Ch6-Debugging, Configuration: Debug x64 ------ +1>CST116-Ch6-Debugging.cpp +1>CST116-Ch6-Debugging.vcxproj -> C:\Users\lacro\Source\Repos\cst116-ch6-debugging-DaBoochillin\CST116-Ch6-Debugging\x64\Debug\CST116-Ch6-Debugging.exe +========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ========== diff --git a/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/CL.command.1.tlog b/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/CL.command.1.tlog Binary files differnew file mode 100644 index 0000000..8a56d46 --- /dev/null +++ b/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/CL.command.1.tlog diff --git a/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/CL.read.1.tlog b/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/CL.read.1.tlog Binary files differnew file mode 100644 index 0000000..4be4afb --- /dev/null +++ b/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/CL.read.1.tlog diff --git a/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/CL.write.1.tlog b/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/CL.write.1.tlog Binary files differnew file mode 100644 index 0000000..7965fa1 --- /dev/null +++ b/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/CL.write.1.tlog diff --git a/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/CST116-Ch6-Debugging.lastbuildstate b/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/CST116-Ch6-Debugging.lastbuildstate new file mode 100644 index 0000000..80246e0 --- /dev/null +++ b/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/CST116-Ch6-Debugging.lastbuildstate @@ -0,0 +1,2 @@ +PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.33.31629:TargetPlatformVersion=10.0.19041.0: +Debug|x64|C:\Users\lacro\Source\Repos\cst116-ch6-debugging-DaBoochillin\CST116-Ch6-Debugging\| diff --git a/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/link.command.1.tlog b/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/link.command.1.tlog Binary files differnew file mode 100644 index 0000000..193db0b --- /dev/null +++ b/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/link.command.1.tlog diff --git a/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/link.read.1.tlog b/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/link.read.1.tlog Binary files differnew file mode 100644 index 0000000..9e9ee29 --- /dev/null +++ b/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/link.read.1.tlog diff --git a/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/link.write.1.tlog b/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/link.write.1.tlog Binary files differnew file mode 100644 index 0000000..6a483b6 --- /dev/null +++ b/CST116-Ch6-Debugging/x64/Debug/CST116-C.3414da97.tlog/link.write.1.tlog diff --git a/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.exe b/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.exe Binary files differnew file mode 100644 index 0000000..3df6c24 --- /dev/null +++ b/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.exe diff --git a/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.exe.recipe b/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.exe.recipe new file mode 100644 index 0000000..4dcf95f --- /dev/null +++ b/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.exe.recipe @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project> + <ProjectOutputs> + <ProjectOutput> + <FullPath>C:\Users\lacro\Source\Repos\cst116-ch6-debugging-DaBoochillin\CST116-Ch6-Debugging\x64\Debug\CST116-Ch6-Debugging.exe</FullPath> + </ProjectOutput> + </ProjectOutputs> + <ContentFiles /> + <SatelliteDlls /> + <NonRecipeFileRefs /> +</Project>
\ No newline at end of file diff --git a/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.ilk b/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.ilk Binary files differnew file mode 100644 index 0000000..7871f15 --- /dev/null +++ b/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.ilk diff --git a/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.log b/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.log new file mode 100644 index 0000000..ce4f74e --- /dev/null +++ b/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.log @@ -0,0 +1,2 @@ + CST116-Ch6-Debugging.cpp + CST116-Ch6-Debugging.vcxproj -> C:\Users\lacro\Source\Repos\cst116-ch6-debugging-DaBoochillin\CST116-Ch6-Debugging\x64\Debug\CST116-Ch6-Debugging.exe diff --git a/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.obj b/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.obj Binary files differnew file mode 100644 index 0000000..a93fea4 --- /dev/null +++ b/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.obj diff --git a/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.pdb b/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.pdb Binary files differnew file mode 100644 index 0000000..431b36e --- /dev/null +++ b/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.pdb diff --git a/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.vcxproj.FileListAbsolute.txt b/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.vcxproj.FileListAbsolute.txt new file mode 100644 index 0000000..1d5fb6a --- /dev/null +++ b/CST116-Ch6-Debugging/x64/Debug/CST116-Ch6-Debugging.vcxproj.FileListAbsolute.txt @@ -0,0 +1 @@ +C:\Users\lacro\Source\Repos\cst116-ch6-debugging-DaBoochillin\CST116-Ch6-Debugging\x64\Debug\CST116-Ch6-Debugging.exe diff --git a/CST116-Ch6-Debugging/x64/Debug/vc143.idb b/CST116-Ch6-Debugging/x64/Debug/vc143.idb Binary files differnew file mode 100644 index 0000000..307bc9d --- /dev/null +++ b/CST116-Ch6-Debugging/x64/Debug/vc143.idb diff --git a/CST116-Ch6-Debugging/x64/Debug/vc143.pdb b/CST116-Ch6-Debugging/x64/Debug/vc143.pdb Binary files differnew file mode 100644 index 0000000..3207dd3 --- /dev/null +++ b/CST116-Ch6-Debugging/x64/Debug/vc143.pdb |