I having trouble... for some reason strcpy(b,a) is not working... it says b is not identified
#include <stdio.h>
#include "simpio.h"
#include "genlib.h"
int main()
{
string a, b, c;
printf("Please enter a word: ");
a = GetLine();
b = strcpy(b,a);
b = strrev(b);
if(strcmp(a,b)==0)
{
printf("\n%s is a palindrome\n",a);
}
else
{
printf("\n%s is not a palindrome\n",a);
}
system("Pause");
}