Write a function to check whether a given string is palindrome or not (use stack).
Answers
Answered by
1
The program output is also shown below. * C Program to Identify whether the String is Palindrome or not using Stack. #include <stdlib.h> #include <string.h> #define MAX 50. int top = -1, front = 0; int stack[MAX]; void push(char); void pop();
Similar questions
Chemistry,
6 months ago
Social Sciences,
6 months ago
Hindi,
6 months ago
Psychology,
1 year ago
Psychology,
1 year ago
Math,
1 year ago
Math,
1 year ago