diff options
Diffstat (limited to 'CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp')
| -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 6fb9e1c..9db265a 100644 --- a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp +++ b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp @@ -35,7 +35,7 @@ * 5) Step over the else if.
* 6) Why is the program going to print "Teenager" for an age of 25?
* ************************************************************************************************************************
-* Because the compare operator is not correct. It needs to be && not ||.
+* Because the compare operator is not correct. It needs to be && not ||, which is a "or" operator.
* ************************************************************************************************************************
* 7) Fix the problem and repeat Steps 1 � 5 to verify the
* problem was corrected.
|