c++ program
Question 1
Referring to above case study, using Stack STL implementation with appropriate functions, develops a complete Palindrome program in C++. Refer to sample output below. Your program is then should be able to determine whether the word given is a palindrome or not.
SAMPLE OUTPUT
:: Palindrome Program: :
: : Palindrome Program : :
Enter total character: 5 Enter character: m a d a m Your word : madam Reverse order: madam Palindrome : Yes
Enter total character: 4 Enter character : f o o d Your word : food Reverse order: doof Palindrome : No
Thank you for using this program.
Thank you for using this program.
Question 2
Referring to the same case study, following the same procedures, solve the issue using Stack Linked List implementation.