CJCoding With Joseph

Function: Is Palindrome Number

Complete the function isPalindrome so it returns 1 if a positive integer reads the same forwards and backwards, and 0 otherwise. The main function prints 'Palindrome' or 'Not a palindrome'.

Example: 1221 is a palindrome; 1234 is not.

Expected Output:

Palindrome
Topics:
Functions/Methods
๐Ÿ“ฅ Auto-Input:
1221\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.