CJCoding With Joseph
← Back to Question List
C# Code Walkthrough #27

String vs Number Concatenation

easyStrings

📄 Code

Read carefully — what does this print?
1Console.WriteLine(1 + 2 + "3");
2Console.WriteLine("1" + 2 + 3);

🎯 Your Answer