[Quiz 1] Palindrome Check
Submit solution
C
Points:
10
Time limit:
0.1s
Memory limit:
2M
Author:
Problem type
Allowed languages
Problem Definition
Write a C Program to check if the given number is Palindrome.
Palindrome
A palindrome is a word, number, phrase, or another sequence of symbols that reads the same backward as forwards, such as madam or racecar, the date and time 12/21/33 12:21, and the sentence: "A man, a plan, a canal – Panama".
Test Data
Sample Input 1
244418
Sample Output 1
Is not a palindrome.
Sample Input 2
12321
Sample Output 2
Is a palindrome.
Sample Input 3
-12321
Sample Output 3
Is a palindrome.
Comments