Ask Question - Get Answer

1 Ans Write a C program to check a Palindrome Number

Asked by AL MaMun (4 Golds) Friday, 31 Jul 2020, 04:35 PM at (Education Tutorials)

Please log in to answer, like and save
0
Save 0

<<< Previous
Log in to Answer Next >>>

Answer(s):

A C program to check Palindrome number :


#include<stdio.h>

int main()

{

    int n, r, rev=0, temp, i;

    printf("Enter a number\n");

    scanf("%d", &n);

    temp=n;

    while(n!=0)

    {

        rev=rev*10;

        rev=rev+n%10;

        n=n/10;

    }

    if(temp==rev)

        printf("%d is a palindrome number", temp);

    else

        printf("%d is not a palindrome number", temp);

    return 0;

}


Answered by AL MaMun (4 Golds) Friday, 31 Jul 2020, 04:35 PM

Please log in to Upvote, Downvote and Report
           

Related Q/A:

1 Ans Which is the best and easy C programming learning website ?

1 Ans Write a C program to implement Insertion sort data structure and algorithm

1 Ans Single Digit Interest Rate in the Banking Sector: Problems and Prospects - essay writing

3 Ans BPSC Assistant Programmer Lab Aptitude test Programs and Queries with Proper solution (Taken By BCC)

1 Ans 41st BCS Technical Subjective Written Exam Question Download

1 Ans Best Web development site in the internet ?

2 Ans Write a C program to implement Selection sort data structure and algorithm

1 Ans A C Program to split a number into digits

2 Ans Write a C program for Binary Search algorithm

2 Ans BPSC aptitude test all programs solutions here