How do I reverse the digits of a number using bitwise?
input:
x = 123;
output:
x = 321;
The code block below should do the trick