Combining Logical Operators - Learn C++ Programming language

 


Combining Logical Operators:

  • You can combine conditional expressions and logical operators to any degree.

Examples:

  • (age < 30 && income > 25'000) || (age >= 30 && balance > 100'000)

 

Post a Comment

0 Comments