What is the “^” symbol in C++?
In C++ the “^” symbol is the bitwise exclusive or (xor) operator. For a single bit you have 0 ^ 0 = 1 ^ 1 = 0 and 0 ^ 1 = 1 ^ 0 = 1. However, in the question you are refering to it is part of Microsoft special syntax for C++ development … Read more