Function that checks for palindrome in c
Write a function in C that checks if a singly linked list is a palindrome.
Prototype: int is_palindrome(listint_t **head);
Return: 0 if it is not a palindrome, 1 if it is a palindrome
An empty list is considered a palindrome
First, what is a pal...
snowcodes.hashnode.dev4 min read