write a program in c++ to implement stack using functions
in header file stack.h
Answer Posted / sv
#include <iostream>
#include <stack>
using namespace std;
int main()
{
string title;
int howmany;
stack<string> discs;
//Asking the user how many discs he wants to enter in the
stack.
//The loop will rotate that many number of times and then
//prompt the user for input.
cout<<"How many discs :";
cin>>howmany;
for(int i=0;i>title;
//pushing the discs one upon the other
discs.push(title);
}
cout<<"Now at the top of the CD Stack we have :"<<discs.top
()<<endl;
cout<<"The first one entered is "<<endl;
while(!discs.empty())
{
title = discs.top();
discs.pop();
}
cout<<title<<endl;
return 0;
}
Is This Answer Correct ? | 31 Yes | 29 No |
Post New Answer View All Answers
What do you mean by friend class & friend function in c++?
What are c++ manipulators?
Does dev c++ support c++ 11?
Define a pdb file.
What are maps in c++?
Explain the virtual inheritance in c++.
What are member functions used in c++?
Which ide is best for c++?
What is the difference between a pointer and a link in c ++?
What are the uses of c++ in the real world?
What is a syntax in c++?
List the features of oops in c++?
What is the difference between set and map in c++?
What is purpose of abstract class?
How many types of scopes are there in c++?