What do you mean by stack program?
Get me an example stack program?
Answer Posted / puneettan
A Stack can be imagined as dinner plates put one over the
another.
'Push' means-- Inserting a new value(like putting a new
dinner plate on the top of the stack)
'Pop' means-- Removing(deleting) a value from the stack(just
like we remove a plate from the top of the stack)
A Stack follows L.I.F.O(Last In First Out).. This means, the
value which was last inserted into a stack would be the
first one to be removed. In the analogous case of dinner
plates, imagine that the plate kept last, on the top of
other plates will have to be removed first. you cannot
remove a plate at the bottom directly.
<--Program, same as given in 1st answer-->
//declaring the variables
char stack[10]
int top=-1;
//making a function for 'Push' mechanism
void push(char d)
{
if(to==9)
printf("stack is full");
else
stack[++top]=d;
}
//making a function for 'Pop' mechanism
char pop()
{
if(top==-1)
return('\0')
else
return(stack[top--]);
}
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What are the 5 oop principles?
what type of question are asked in thoughtworks pair programming round ?
What is encapsulation in simple terms?
How do you answer polymorphism?
What is encapsulation with real life example?
What is solid in oops?
program for insertion ,deletion,sorting in double link list
Why interface is used?
What is persistence in oop?
Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?
Can a destructor be called directly?
Where is pseudocode used?
What does and I oop and sksksk mean?
What is encapsulation in ict?
What is object-oriented programming? Webopedia definition