Write a program using a do while loop to check if the number entered by a user is a palindrome? [clo
- by josef
Write a program using a do while loop to check if the number entered by a user is a palindrome?
Hint: A number is a palindrome if it is the same when it read in forward or backward direction
e.g.
if the number entered is 121 - it is palindrome
if the number entered is 323 - it is palindrome
if the number entered is 132 - it is not palindrome
in c++