answersLogoWhite

0


Best Answer

what ever you assume

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Stack c language program of palindrome?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you write palindrome program in c language?

int pallindrom(int p){ /*write all logic*/ }


Code palindrome in c using queue and stuck?

/** 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--]);}


Write a program to convert stack into queue using c language?

In order to write a program to convert stack into queue using c language you must be able to identify the proper program. Having a special certification in programing will be beneficial as well to make sure you recognize the proper queues for the programs.


What is the palindrome in c language?

Nothing.


How do you write a palindrome program in c in Wikipedia?

You don't have to write palindrome programs in wikipedia.


Different parts of c language program?

what are the parts of C language program


How you use stack in c plus plus classes?

It would be easier to manipulate the stack in assembly language rather than C++.


Write a c program to perform stack operation?

int top=-1; int stack[10];


C program to implement tower of hanoi using array implementation of stack abstract datatype?

stack abstract datatype


What has the author David Spuler written?

David Spuler has written: 'Comprehensive C' -- subject(s): C (Computer program language) 'C++ and C efficiency' -- subject(s): C++ (Computer program language), C (Computer program language)


What is flowchart of stack using array in c prog?

Two little problems: 1. stack doesn't have a flow-chart 2. there are no flow-charts in a C program


Program for sin series in c language?

find the program in c-pgms.blogspot.com