Vision and dreams are the blueprints of soul and achievements.
-Mohammed Ahmed F

Palindrome

 #include<stdio.h> 
  #include <string.h>
  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; 
  }

Share this

Related Posts

Dear User,

Thank you for your comment. Hope you like this blog. Kindly share us on Social Media so others can be updated.

-Chief Administrative Officer.

Note: only a member of this blog may post a comment.