write a program in c++ to implement stack using functions
in header file stack.h
Answer Posted / jhil
# include<iostream.h>
# include<conio.h>
# define SIZE 20
class stack
{
int a[SIZE];
int top; // Top of Stack
public:
stack();
void push(int);
int pop();
int isempty();
int isfull();
};
stack::stack()
{
top=0; //Initialize Top of Stack
}
int stack::isempty()
{
return (top==0?1:0);
}
int stack::isfull()
{
return (top==SIZE?1:0);
}
void stack::push(int i)
{
if(!isfull())
{
cout<<"Pushing a data "<<i<<endl;
a[top]=i;
top++;
}
else
{
cout<<"Stack overflow error !Possible Data Loss !";
}
}
int stack::pop()
{
if(!isempty())
{
cout<<"Popping "<<a[top-1]<<endl;
return(a[--top]);
}
else
{
cout<<"Stack is empty! What to pop...!";
}
return 0;
}
void main()
{
clrscr();
stack s;
s.push(1);
s.push(2);
s.push(3);
s.pop();
s.pop();
getch();
}
| Is This Answer Correct ? | 15 Yes | 23 No |
Post New Answer View All Answers
What is the insertion operator and what does it do?
What is c++ library?
What are the types of container classes?
Explain the difference between class and struct in c++?
What is an operator in c++?
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?
Explain static and dynamic memory allocation with an example each.
What is #include iostream?
What is the use of ::(scope resolution operator)?
What is == in programming?
Explain the operation of overloading of an assignment operator.
Which c++ operator cannot overload?
How do you master coding?
What are shallow and deep copies?
What is late binding c++?