bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/C++/C++ Tutorial
C++•C++ Tutorial

C++ Logical Operators

Logical Operators

As with comparison operators , you can also test for true ( 1 ) or false ( 0 ) values with logical operators .

Logical operators are used to determine the logic between variables or values:

OperatorNameDescriptionExample
&&Logical andReturns true if both statements are truex < 5 && x < 10
Logical orReturns true if one of the statements is truex < 5x < 4
!Logical notReverse the result, returns false if the result is true!(x < 5 && x < 10)

You will learn much more about true and false values in a later chapter.

Previous

C++ Comparison Operators

Next

C++ Operator Precedence