xor
An alternative to the ^
operator.
C
#define xor ^
The macro yields the operator ^
.
C++
// iso646_xor.cpp
// compile with: /EHsc
#include <iostream>
#include <iso646.h>
int main( )
{
using namespace std;
int a = 3, b = 2, result;
result= a ^ b;
cout << result << endl;
result= a xor b;
cout << result << endl;
}
Output
1
1
Header: <iso646.h>