Skip to content

Latest commit

History

History
20 lines (17 loc) 路 481 Bytes

top.md

File metadata and controls

20 lines (17 loc) 路 481 Bytes

top

Description : top() function is used to reference the top(or the newest) element of the stack.

Example:

    // Empty stack 
    std::stack<int> mystack; 
    //pushing elements using push()
    mystack.push(0); 
    mystack.push(1); 
    mystack.push(2); 
  
    while (!mystack.empty()) { 
        //deleting elements using pop()
        std::cout << ' ' << mystack.top(); 
        mystack.pop(); 
    } 

Run Code