C# program to push elements to stack using collection

Program to push element in the stack using ‘Push’ method 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("Elements are pushed successfully");

        }
    }
}


Output

Elements are pushed successfully

Leave a Comment

error: Alert: Content is protected!!