Bitwise operator

if a = 3 b = 4 c = 6

what is
(a|b&c) and how you find that out?
Convert the numbers to binary and perform the operations.
Don't forget about operator precedence either. (a|b&c) is equivalent to (a|(b&c)).
Topic archived. No new replies allowed.