+3 votes
352 views
asked in Discrete Mathematics by (290 points)  

In terms of the precedence order of operative, it followings like this

Operative Order
NOT 1
AND 2
OR 3
---> 4
<--> 5

But I was wondering waht would be the order of precedence for the operative of EOR

  

1 Answer

+1 vote
answered by (115k points)  
Can you find it in the precedence order of bitwise operations (including xor) in a language such as C? Search online and find the order and share with us.
commented by (290 points)  
+2
So I believe I found the order, and it turns out the XOR is in between AND and OR, it can be shown in precedence order 8,9 and 10, in the following link
https://en.cppreference.com/w/c/language/operator_precedence
Thank You.

Related questions

...