NVIDIA Interview Question

In C, write code to find out if a string is palindrome or not

Interview Answer

Anonymous

Mar 20, 2024

Iteratively compare the head with the tail

2