Skip to main content

To check if given string is palindrome or not.

To check if given string is palindrome or
not.






#include <stdio.h>
#include <string.h>
#include<conio.h>
 

int main()
 

{
 

char a[100], b[100];

printf("Enter the string to check if it is a palindrome\n");
 

gets(a);
 

strcpy(b,a);
 

strrev(b);
 

if( strcmp(a,b) == 0 )
 

printf("Entered string is a palindrome.\n");
 

else
 

printf("Entered string is not a palindrome.\n");
 

return 0;
 

}




Comments

Popular posts from this blog

C Program to print the pattern

C Program to print the pattern X X Y X Y Z ........................................................................................ #include<stdio.h> #include<conio.h> void main () { int i , j ; for ( i= 88 ; i< 91 ;i ++) { for ( j = 88 ;j <= i ; j ++) { printf ( "%c" , j );                    }           printf ( "\n" ); } getch (); } ........................................................................................ OUTPUT

Deen Dayal Upadhyay Gorakhpur University RESULTS

DDU Gorakhpur results chahiye to yaha click kare                                                                       RESULTS  

Computer Science B.Sc2nd Practical 2016

             Deen Dayal Upadhyaya Gorakhpur University                            Computer Science B.Sc2nd Practical 2016