The example works because 0 is equal to false and 1 is equal to true
In both cases, 0 != 0 is false = 0, since 0 does equal 0. You can work out all other
0
clcto
On
The operator != means does not equal.
0
PaulProgrammer
On
!= is just the character sequence for the "not equal" operator. xor is actually ^ operator.
0
sinkmanu
On
You can do the XOR operator with the OR and AND operator.
For example:
Consider the truth table:
The example works because 0 is equal to
false
and 1 is equal totrue
In both cases,0 != 0
isfalse
= 0, since 0 does equal 0. You can work out all other