C Sharp (C#) - Collections
What is the output of this C# code?
var stack = new Stack<int>(); stack.Push(1); stack.Push(2); stack.Push(3); Console.WriteLine(stack.Pop()); Console.WriteLine(stack.Peek());
