Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Gary Daniels and Evan Goldring - Mock whiteboard problem
Aug 24, 2004 at 5:43 PMbool IsPalindrome(char *text)
{
if (text)
{
char *first = text;
char *last = text + strlen(text) - 1;
while (first <= last)
{
if (*first != *last)
return false;
first++;
last--;
}
return true;
}
return false;
}