Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

print stack c++

void printStack(stack<int> s){
	while(!s.empty()){
      cout<<s.top()<<" ";
      s.pop();
    }
    cout<<"
";
}
 
PREVIOUS NEXT
Tagged: #print #stack
ADD COMMENT
Topic
Name
5+8 =