Check if a number is Even or Odd using Bitwise operator.
This simply uses the and bitwise operator to check if a number is even or odd. The operator converts the number to a binary number and uses the rightmost number. if the rightmost digit is one, the number is said to be odd. If the rightmost digit is Z...
lovisgod.hashnode.dev