Q:

C# program to copy stack elements to array

0

C# program to copy stack elements to array

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program to copy stack elements to an array in C#

using System;
using System.Collections;

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

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

            S.CopyTo(arr, 1);

            Console.WriteLine("Items are:");
            for (int i = 0; i < arr.Length; i++)
            {
                Console.WriteLine("\tItem[" + (i + 1) + "]: "+arr[i]);
            }
        }
    }
}

Output

Items are:
        Item[1]:  0
        Item[2]: 40
        Item[3]: 30
        Item[4]: 20
        Item[5]: 10

Note: In above program, to use 'Stack' class, we need to include System.Collection namespace.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Data Structure Solved Programs/Examples

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to insert or enqueue elements into queu... >>
<< C# program to check whether element exists in stac...