Shiam7777777

Untitled

Jan 21st, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. stack< int > st;
  2.     st.push( 100 ); // inserting 100
  3.     st.push( 101 ); // inserting 101
  4.     st.push( 102 ); // inserting 102
  5.    
  6.     while( !st.empty() ) {
  7.         cout << st.top() << endl; // printing the top
  8.         st.pop(); // removing that one
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment