what is Bitwise XOR. code example
Example: ;bitwise xor
#include
int main()
{
int a = 12, b = 25;
printf("Output = %d", a^b);
return 0;
}
#include
int main()
{
int a = 12, b = 25;
printf("Output = %d", a^b);
return 0;
}