Domanda

I have the following expression to calculate a parity bit:

AB0E XOR 73C9 XOR D46A XOR 06E3

How would this be evaluated? Is it:

(((AB0E XOR 73C9) XOR D46A) XOR 06E3)

or is it:

(AB0E XOR (73C9 XOR (D46A XOR 06E3)))

È stato utile?

Soluzione

There is no difference; XOR is associative.

Altri suggerimenti

Since expressions have the same level or priority, so precedence will be left to right

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top