A && B || C && D
(A && B) || (C && D)
Are both boolean logic equal in C++? I am confused can someone help pelase
Are both boolean logic equal in C++? I am confused can someone help pelase |
|||
|
Whether or not they're equal depends entirely on how you define your operator precedence. If |
|||||||||
|
|
In the most programming languages you'll find that operator
is equivalent to
You can even copy-paste the code:
to Ideone to find out for yourself. In C++ for example the output is:
So the |
||||
|
|
|
While the final answer goes to the specifics of the C++ language you're asking about, here's some food for thought on why (and possibly how) to remember: Conjunction (AND, &&) is often associated with multiplication, while disjunction (OR, ||) is often associated with addition (and we generally know the precedence of multiplication over addition). Here's a quote from http://www.ocf.berkeley.edu/~fricke/projects/quinto/dnf.html:
Speaking in rather general terms, the computer languages tend to honor the precedence of multiplicative operators over additive operators. (Further, these associations, e.g. between operators in logic and in algebra reoccur in other areas, such as type systems. For an interesting exposition of that, see http://blog.lab49.com/archives/3011 on the notion of Algebraic Type Systems.) |
|||
|
|
c++andboolean operator. Another useful word isprecedence. There should be no shortage of useful information online. (Random first hit: cplusplus.com/doc/tutorial/operators) – user166390 Dec 27 '12 at 21:10