Question: Write a function called isPalindrome that takes a single unsigned integer and returns a signed char with value one (true) if the bits of the

Write a function called isPalindrome that takes a single unsigned integer and returns a signed char with value one (true) if the bits of the number form a binary palindome and zero (false) if not, ignoring leading zeros. A palindrome reads the same forwards and backwards. E.g., 0, (0b00000000), 1 (0b00000001), 9 (0b00001001) and 107 (0b1101011) will return one (true), while 6 (0b00000110), 11 (0b00001011) and 42 (0b00101010) will return zero (false).

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!