English

Write a Program to Validate Whether Accepted String is Palindrome Or Not. - Structured Programming Approach

Advertisements
Advertisements

Question

Write a program to validate whether accepted string is palindrome or not. 

Solution

#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char a[100],b[100] ;
clrscr();
printf("Enter a string:");
gets(a);
strcpy(b,a);
strrev(b);
if(strcmp(a,b)==0) 

             printf("The entered string is pallindrome");
else
             printf("The entered string is not pallindrome");
getch();
}

Output:
Enter a string: madam
The entered string is palindrome

shaalaa.com
Control Structures - Looping
  Is there an error in this question or solution?
2018-2019 (December) CBCGS
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×