Advertisement
Guest User

Untitled

a guest
Oct 12th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <iostream>
  2. #include "Stackcpp.h"
  3. using namespace std;
  4.  
  5. int main(int argc, char const *argv[]) {
  6. stack s1;
  7. s1.push(1);
  8. cout << "Pop!: " << s1.pop() << endl;
  9. cout << "Success" << endl;
  10. return 0;
  11. return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement