Header

Wednesday 14 August 2013

Writer an interactive C program to check whether the given string is a palindrome or not, using pointers.

Writer an interactive C program to check whether the given string
is a palindrome or not, using pointers.

#include<stdio.h>
#include<conio.h>
int main()
{
 char str[30];
 char *p,*t;
 printf("Enter any string : ");
 gets(str);
 for(p=str ; *p!=NULL ; p++);
  for(t=str, p-- ; p>=t; )
  {
    if(*p==*t)
    {
        p--;
        t++;
    }
    else
        break;
  }
  if(t>p)
       printf("\nString is palindrome");
  else
       printf("\n
String is Not palindrome");
  getch();
  return 0;
}

No comments:

Post a Comment