[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/adarshbalu/cpp-programs/master/stack.cpp [Back]  [Original]

#include
#include
class stack{

	int a[100],top;
	public:void push();
		void pop();
		void display();
		stack();

};
stack::stack()
{
	top=0;


}
void stack ::push(){
	int item;
	if(top==99)
	{
		cout

Web Proxy Viewer  |  New URL  |  Original Page