write program for palindrome

Answer Posted / baskaran

#include<stdio.h>
#include<string.h>
#define size 26
void main()
{
char strsrc[size];
char strtmp[size];

printf("\n Enter String:= ");
gets(strsrc);
strcpy(strtmp,strsrc);
strrev(strtmp);
if(strcmp(strsrc,strtmp)==0)
printf("\n Entered string \"%s\" is palindrome\n",strsrc);
else
printf("\n Entered string \"%s\" is not
Palindrome\n",strsrc);
}

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why ctype h is used in c++?

699


Can I run c program in turbo c++?

751


Why the usage of pointers in C++ is not recommended ?

1088


Write a program which uses functions like strcmp(), strcpy()? etc

825


Which compiler does turbo c++ use?

792


Why #include is used?

787


How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?

1005


What is a constructor in c++ with example?

799


What are advantages of c++?

767


What are c++ data types?

854


What is static in c++?

779


What is setiosflags c++?

697


In the derived class, which data member of the base class are visible?

850


What is the full name of logo?

813


What is the best c++ compiler for windows 10?

753