“PlusString” (Problem)

What will the following code display?

Console.WriteLine(1 + 2 + "A");
Console.WriteLine(1 + "A" + 2);
Console.WriteLine("A" + 1 + 2);

Solution

Last updated