Microsoft interview question

Write an algorithm to validate a palindrome

Interview Answer

Anonymous

Aug 28, 2013

bool isPalin(char * word){ int i = 0, j = strlen(word)-1; while(i