Delete data from stack in C++

Advertisements

Prev Tutorial Next Tutorial

Stack POP Operation in C++

In case of stack deletion of any item from stack is called pop. In any item is delete from top of the stack, When you delete any item from stack top will be decreased by 1.

pop operation in stack in c++

Algorithm for pop

  • Repeated steps 2 to 4 until top>=0
  • Set item=stack[top]
  • Set top=top-1
  • Print "Item deleted"
  • Print "Stack under flow"

Delete data from Stack in C++

	
void pop()
{
int item;
if(top==0)
{
cout<<"\nStack is empty: ";
}
else
{
s.item=s.stack[top];
top=top-1;
cout<<"deleted data is: "cout<<s.item;
}
}

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements