Computer Science, asked by Korangadevs2196, 1 year ago

Write a function to check whether a given string is palindrome or not (use stack).

Answers

Answered by shivamraj26
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