+ 1
What does the "^=" operator do?
2 ответов
+ 8
Assignment operator (x ^ = y) is equivalent to (x = x ^ y)
^ Simply means Exclusive OR
+ 7
I made this in java, might help you understand it better 👍
https://code.sololearn.com/c70XD2RyAA36/?ref=app