# “PlusChar” (Problem)

What will the following code display?

```csharp
Console.WriteLine(1 + 2 + 'A');
Console.WriteLine(1 + 'A' + 2);
Console.WriteLine('A' + 1 + 2);
```

[Solution](https://andreyakinshin.gitbook.io/problembookdotnet/en/strings/pluschar-s)
