How to use stack with push, empty, pop and top in C++

1 Answer

0 votes
#include <iostream>  
#include <stack> 

using std::stack;
using std::cout;
using std::endl;

int main()
{
	stack<char> stck;

	stck.push('a');
	stck.push('b');
	stck.push('c');
	stck.push('d');
	stck.push('e');

	while (!stck.empty()) {
		cout << stck.top() << endl;
		stck.pop();
	}

	return 0;
}

/*
run:

e
d
c
b
a

*/

 



answered Apr 24, 2018 by avibootz

Related questions

1 answer 70 views
1 answer 76 views
1 answer 170 views
1 answer 174 views
174 views asked Mar 10, 2024 by avibootz
1 answer 180 views
1 answer 192 views
...