C# program to get the total number of elements in the stack

Program to get the total number of elements 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("Total items in stack: " + S.Count);
        }
    }
}

Output

Total items in stack: 4

Leave a Comment

error: Alert: Content is protected!!