Computer Science, asked by chaudharyparul7011, 1 month ago

write the order of precedence of operator?​

Answers

Answered by Garvpopli
10

Answer:

Precedence order.

When two operators share an operand the operator with the higher precedence goes first. For example, 1 + 2 * 3 is treated as 1 + (2 * 3), whereas 1 * 2 + 3 is treated as (1 * 2) + 3 since multiplication has a higher precedence than addition.

Answered by k11223
1

Answer:

An operator precedence parser is a bottom-up parser that interprets an operator grammar

Explanation:

Make me a brain master.

Similar questions