Guest User

Untitled

a guest
Oct 21st, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. `
  2. // return top of stack
  3. Elemty ArrayStack::top() {
  4. if (empty()) cout<<"Top of empty stack"<< endl;
  5. else return S[t];
  6. }
  7. `
Add Comment
Please, Sign In to add comment