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

Operator Precedence

mediumOperators

📄 Code

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

🎯 Your Answer