Palindrome [C/C++]

//Coded by : dL1nkx
//Copyright: dL1nkx.blogspot.com
#include<stdio.h>
#include<conio.h>
#include<string.h>
main()
{
      char o[15],p[15],q[15];
      printf("Please Enter a Word ");
      scanf("%s",o);
      strcpy(p,strrev(o));
      printf("%s",strrev(o));
      if(strcmpi(o,p) == 0)
                      printf("\nIt is Palindrome");
      else
      printf("\nNot Palindrome");
      getch();
}