0
Boolean logic
What's the difference between & and "and" and between | and "or" ?
4 Respostas
+ 4
and(&) will be true if both statements are true.
or(|) will be true is either of statements is true.
+ 2
hi,
Logical ( and &):-
it multiplies var a with var b to check the result out.
Logical ( or |):-
it adds var a with var b to check the results.
+ 1
thx ^^
0
its same as it used in
AND Gate ( truth table)
OR Gate ( truth table)
single operators are known as bitwise and , or
double operators are known as logical and,or