diff options
| author | Trenton Stark <[email protected]> | 2022-10-01 12:45:32 -0700 |
|---|---|---|
| committer | Trenton Stark <[email protected]> | 2022-10-01 12:45:32 -0700 |
| commit | cb5a1e2854b36f14b5670d979cf37963e29ca37e (patch) | |
| tree | 50eb83b6ff78735d554dfb37c7e5b2b6046cc1fc /Ch 5 Debugging Project | |
| parent | Setting up GitHub Classroom Feedback (diff) | |
| download | cst116-lab0-debugging-starktre-cb5a1e2854b36f14b5670d979cf37963e29ca37e.tar.xz cst116-lab0-debugging-starktre-cb5a1e2854b36f14b5670d979cf37963e29ca37e.zip | |
Added a reponse to excersise 1, question 10
Diffstat (limited to 'Ch 5 Debugging Project')
| -rw-r--r-- | Ch 5 Debugging Project/Ch 5 Debugging Project.cpp | 2 | ||||
| -rw-r--r-- | Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj | 8 |
2 files changed, 6 insertions, 4 deletions
diff --git a/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp b/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp index 6545e9b..72850e4 100644 --- a/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp +++ b/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp @@ -25,6 +25,8 @@ * line.
* 10) Step over the next cout statement. Now look at the console
* window. What was printed?
+* After your raise you have $
+*
* 11) Select Stop Debugging either from the Debug menu or from your
* toolbar.
*
diff --git a/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj b/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj index b6da2fe..97611d8 100644 --- a/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj +++ b/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj @@ -29,26 +29,26 @@ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
|