C# program to pop elements from stack using collection

Program to pop elopements using ‘Pop()’ method from a stack in C#

using System;
using System.Collections;

namespace ConsoleApplication1
{
    
    class Program
    {
        static void Main()
        {
            Stack S = new Stack(5);

            S.Push(10);
            S.Push(20);
            S.Push(30);
            S.Push(40);

            Console.WriteLine("Popped Element: " + S.Pop());
            Console.WriteLine("Popped Element: " + S.Pop());
            Console.WriteLine("Popped Element: " + S.Pop());
            Console.WriteLine("Popped Element: " + S.Pop());

        }
    }
}


Output

Popped Element: 40
Popped Element: 30
Popped Element: 20
Popped Element: 10

Leave a Comment

error: Alert: Content is protected!!