Please Solve it by C language
Q2 The following array of pointers is given. Write a C program that gets the array and prints the characters in reverse. Your function must check if the string is a palindrome and print the total number of palindrome words.
char* words[5] = {"mom", "sing", "mouse", "radar", "test"};
Hint: A word that reads the same backwards as forwards, like "madam".
Attention: Your program MUST be implemented using an array of pointers. You cannot claim marks for other solutions.