code of Integer a, b, c Set a = 8, b = 51, c = 2 c = (a ^ c)^ (a) b = b mod 4 Print a + b + c Note: - where ^ is bitwise XOR operator
Integer a, b, c
Set a = 8, b = 51, c = 2
c = (a ^ c)^ (a)
b = b mod 4
Print a + b + c
Note: - where ^ is bitwise XOR operator