For the complete documentation index, see llms.txt. This page is also available as Markdown.

“PlusChar” (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