If a number is a palindrome number, that means the that number remains the same value when its digits are reversed.
E.g. 12345 is not a palindrome number because 12345 is not equal to 54321; on the contrary, 10301 is a palindrome number because it remains 10301 when its digits are reversed.
Given an integer. Please Write a C program to tell if it’s a palindrome number.
One integer Num. Note that 32,767 >= Num >= 0.
Output should follow below format:
Yes/No
Note that: