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
Why ctype h is used in c++?
Can I run c program in turbo c++?
Why the usage of pointers in C++ is not recommended ?
Write a program which uses functions like strcmp(), strcpy()? etc
Which compiler does turbo c++ use?
Why #include is used?
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?
What is a constructor in c++ with example?
What are advantages of c++?
What are c++ data types?
What is static in c++?
What is setiosflags c++?
In the derived class, which data member of the base class are visible?
What is the full name of logo?
What is the best c++ compiler for windows 10?