logical-operator tag

1 questions


1 answers
49 views
0
Where is the logical operator xor?

Where is the logical operator xor?// Return 1 when either A or B is 5return (A==5) ^^ (B==5);I want to write it like this, but there is no ^^ operator, but there is only a bit operator ^.There are &am...


© 2024 OneMinuteCode. All rights reserved.