Can someone explain me operator precedence in detail? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

Can someone explain me operator precedence in detail?

26th Jun 2019, 1:10 AM
EthicalCoder
2 Antworten
+ 6
Operator Precedence in C Operator precedence determines which operator is evaluated first when an expression has more than one operators. For example 100-2*30 would yield 40, because it is evaluated as 100 – (2*30) and not (100-2)*30. The reason is that multiplication * has higher precedence than subtraction(-). you can check this one... https://www.google.com/amp/s/www.geeksforgeeks.org/theory-computation-operator-grammar-precedence-parser/amp/ Thanks.
26th Jun 2019, 1:14 AM
Asmit joy
Asmit joy - avatar
0
In operator precedence(priority or importance)we have *,/,+,%,- operators In which /*% have equal priority and -+ have equal priority But among them */% have higest priority than +- ------------------------------------------- Equation statement is executed from LEFT to RIGHT after = sign. a=5+1*2 Output :a=7 Because from Left to RIGHT * has highest precedence than + ------------------- If we want to execute any part of equation first then we right them in () parenthesis. E.g. b=(5+1)*2 Output: b=12
26th Jun 2019, 11:29 AM
Kiran Borade
Kiran Borade - avatar