हिंदी

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

Advertisements
Advertisements

प्रश्न

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

उत्तर

#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
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2018-2019 (December) CBCGS
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Course
Use app×