I have following line of code:
contents[pos++] ^= key[shift++];
What does operator ^= means?
Thanks in advance
|
|
|
|||||
|
|
This means preform an XOR operation on Example:
|
|||
|
|
|
It is a bitwise XOR operator.
is basically
of course, this is a bitwise operation |
|||
|
It is a bitwise exclusive OR on two integers. http://bytes.com/topic/c/answers/726626-what-caret-qualifier |
|||||
|