<< is a bitwise shift left operator. for example, binary 1011 shifted left by one bit is 10110
& is the bitwise and operator- it takes two binary values, and returns a third, which has a 1 if the coressponding bits of BOTH the arguments are set, 0 otherwise.
10111
11100 &
=====
10100
| is...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.