#bit-manipulation-dsa
Read more stories on Hashnode
Articles with this tag
i) a<<b (a left shift b):- a * 2^b; ii) a>>b(a right shift b):- a/2^b; Write a program to check number is even or odd using bit manipulation. public...