The thing is that the line commented out in the function Palin, the "char *Temp;" causes a segmentation fault. I need to create a new char* to keep checking for other stuffs in the string, I thought the segmentation fault was because I was initializing a pointer and then I didn't use it, but even if I initialize the pointer, or use it, it keeps giving the segmentation fault!
It is surely a really simple error, but I'm not a pretty much experienced programmer, so I can't find out what it is. Thanks! And sorry for my bad english haha.
You could avoid the C style code and make things a lot simpler:
1 2 3 4 5 6 7 8 9 10
bool isPalindrome(const std::string& s) /* notice that C++ has a built-in type bool,
so there's no need for macro hacks */
{
std::string temp;
for(unsignedint i = 0; i < s.size(); ++i)
{
temp += s[s.size() - 1 - i];
}
return s == temp;
}
You could simplify that even more with a standard library function, but I guess that would defeat the purpose of the exercise.