poooda
in morse code
The phrase "Madam I'm Adam" is a palindrome, because it reads the same forwards as it does backwards.
There is no palindrome for 14.
Yes, 1331 is a palindrome
"Was it a rat I saw? is a palindrome.
/** C Program to Check String is Palindrome using Stack.*/#include #include void push(char);char pop();char stack[100];int top = -1;void main(){char str[100];int i, count = 0, len;printf("Enter string to check it is palindrome or not : ");scanf("%s", str);len = strlen(str);for (i = 0; i < len; i++){push(str[i]);}for (i = 0; i < len; i++){if (str[i] == pop())count++;}if (count == len)printf("%s is a Palindrome string\n", str);elseprintf("%s is not a palindrome string\n", str);}/* Function to push character into stack */void push(char c){stack[++top] = c;}/* Function to pop the top character from stack */char pop(){return(stack[top--]);}
what ever you assume
foreach char in string push on to stack create new string foreach char in string pop off and add to end of new string if new string equals old string palindrome else not palindrome //when you pop off the stack, the characters come off in reverse order, thus you have reversed the original string
i
in morse code
SOS, the international Morse code distress signal, is a palindrome.
palindrome
The lexicographically smallest palindrome that can be formed using the letters in the keyword "keyword" is "deed."
Which code ? there are several out there
Allocate more memory to the stack or write code that does not leave stuff on the stack.
"Radar detection system: madam rotor" is a palindrome for detection system using radar waves.
The phrase "Madam I'm Adam" is a palindrome, because it reads the same forwards as it does backwards.