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
Which software is used for c++ programming?
What is abstraction in c++?
Distinguish between new and malloc and delete and free().
What is an inclusion guard?
What is the difference between global variables and static varables?
Is nan a c++?
Write about the role of c++ in the tradeoff of safety vs. Usability?
What is c++ prototype?
Give an example of run-time polymorphism/virtual functions.
What is expression parser in c++
What do manipulators do?
How can you link a c++ program to c functions?
What is the output of the following program? Why?
Write a Program for find and replace a character in a string.
Define copy constructor.