C Sharp (C#) - Collections
What will be printed by this C# code?
var stack = new Stack<string>();
stack.Push("apple");
stack.Push("banana");
stack.Push("cherry");
Console.WriteLine(stack.Pop());