← Back to Question List
C# Code Walkthrough #2
Multiplication Before Addition
📄 Code
Read carefully — what does this print?1int x = 2 + 3 * 4;2Console.WriteLine(x);
1int x = 2 + 3 * 4;2Console.WriteLine(x);