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

Multiplication Before Addition

easyOperators

📄 Code

Read carefully — what does this print?
1int x = 2 + 3 * 4;
2Console.WriteLine(x);

🎯 Your Answer