Showing posts with label palindrome number program. Show all posts
Showing posts with label palindrome number program. Show all posts

Wednesday, March 5, 2014

C program to find a palindrome number

Share Post:
#include <stdio.h>
#include <stdlib.h>

int main()
{
    int n,revers=0,temp;
    printf("Enter the number...");
    scanf("%d",&n);