Back
Close

C# Operator Precedence Multiplication

amiedd
4,200 views

C# Operator Precedence

AmieDD www.amiedd.com

C# Operator Precedence Multiplication

Operator precedence groups terms in expressions. This affects how the math problem is evaluated. Some operators take higher precedence. Example: Multiplication operator has higher precedence over the addition operator.

The above code will output 10 The Multiplication is the higher precedence 3*2 = 6 Then the Addition 4+6 Equals 10

Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.
Go to tech.io