← Back to Question List
C# Code Walkthrough #35
Operator Precedence
📄 Code
Read carefully — what does this print?1int r = 2 + 3 * 4 - 6 / 2;2Console.WriteLine(r);
1int r = 2 + 3 * 4 - 6 / 2;2Console.WriteLine(r);