- 1
Explain about these assignment operator of c++ how they work.
&= , |= , ^= , >>= , <<=
2 Respostas
+ 2
These are all bitwise operators.
Visit here for detailed information about the same👇
https://code.tutsplus.com/articles/understanding-bitwise-operators--active-11301
+ 2
We have them here in SoloLearn:
https://www.sololearn.com/learn/4070/?ref=app
a &= b means a = a & b
a |= b means a = a | b
Etc