Write a program to input two digit number and check number is palindrome or not.

ABOUT PROGRAM In this program we input a two digit number and check number is palindrome(a number which read by both side) or not. For this program we use if else statement and you should knowledge of some basic conditional statements program. So check last program. First,we should 1st digit by using division and 2nd digit by using modular and at the end we check that both digits or equal or not. If both are equal then we print this is palindrome or not. #include<stdio.h> #include<conio.h> void main() { int n,a,b; clrscr(); printf("Enter two digit number="); scanf("%d",&n); a=n/10; b=n%10; if(a==b) printf("\nThis is Palindrome"); else printf("\nNot Palindrome number"); getch(); } OUTPUT Enter two digit number=66 This is Palindrome OR Enter two digit number=65 Not Palindrome number Related Examples...