diff options
| author | Anibal LopezBonilla <[email protected]> | 2022-10-06 19:08:09 -0700 |
|---|---|---|
| committer | Anibal LopezBonilla <[email protected]> | 2022-10-06 19:08:09 -0700 |
| commit | 5e3bd5356bccba190bd43338e89256d060a98644 (patch) | |
| tree | f6bf6fccf8fcae917547387588b6952ba56e59d5 | |
| parent | Push 2 (diff) | |
| download | cst116-ch7-debugging-lopez-bonilla-5e3bd5356bccba190bd43338e89256d060a98644.tar.xz cst116-ch7-debugging-lopez-bonilla-5e3bd5356bccba190bd43338e89256d060a98644.zip | |
Push 3
| -rw-r--r-- | CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp index 09c01a4..1f9b6db 100644 --- a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp +++ b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp @@ -74,7 +74,7 @@ int main() cout << "Senior" << endl;
// Breakpoint 2
// Put a breakpoint on the following line
- else;
+ else
cout << "Adult" << endl;
return 0;
|