A programme to check palindrome?

AnswerBot
1y

A programme to check if a given string is a palindrome.

  • Create a function that takes a string as input.

  • Convert the string to lowercase and remove any non-alphanumeric characters.

  • Reverse the string and ...read more

Seethannagari Sandhya Rani
2y

palindrome number is a number that is same after reverse. For example 121, 34543, 343, 131, 48984 are the palindrome numbers.

Palindrome number algorithm
  • Get the number from user
  • Hold the number in temporary variable
  • Reverse the number
  • Compare the temporary number with reversed number
  • If both numbers are same, print palindrome number
  • Else print not palindrome number

Let's see the palindrome program in C. In this c program, we will get an input from the user and check whether number is palindrome or not.

ADVERTISEMENT
ADVERTISEMENT
 
  1. #include<stdio.h>  
  2. int main()    
  3. {    
  4. int n,r,sum=0,temp;    
  5. printf("enter the number=");    
  6. scanf("%d",&n);    
  7. temp=n;    
  8. while(n>0)    
  9. {    
  10. r=n%10;    
  11. sum=(sum*10)+r;    
  12. n=n/10;    
  13. }    
  14. if(temp==sum)    
  15. printf("palindrome number ");    
  16. else    
  17. printf("not palindrome");   
  18. return 0;  
  19. }   

Output:

enter the number=151
palindrome  number

enter the number=5621
not palindrome  number


 For Videos Join Our Youtube Channel: Join Now
Feedback
  • Send your Feedback to feedback@javatpoint.com
Help Others, Please Share   
Learn Latest Tutorials

Splunk

SPSS

Swagger

Transact-SQL

Tumblr

ReactJS

Regex

Reinforcement Learning

R Programming

RxJS

React Native

Python Design Patterns

Python Pillow

Python Turtle

Keras

Preparation

Aptitude

Reasoning

Verbal Ability

Interview Questions

Company Questions

Trending Technologies

Artificial Intelligence

AWS

Selenium

Cloud Computing

Hadoop

ReactJS

Data Science

Angular 7

Blockchain

Git

Machine Learning

DevOps

B.Tech / MCA

DBMS

Data Structures

DAA

Operating System

Computer Network

Compiler Design

Computer Organization

Discrete Mathematics

Ethical Hacking

Computer Graphics

Software Engineering

Web Technology

Cyber Security

Automata

C Programming

C++

Java

.Net

Python

Programs

Control System

Data Mining

Data Warehouse



 
 
 
Help your peers!
Add answer anonymously...
Infogain Junior Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter