The '_____' operator in Go is used to perform bit clear (AND NOT).

  • &
  • &^
  • <
  • ^
The correct operator to perform bit clear (AND NOT) in Go is the '&' operator followed by the '^' symbol, forming '&^'. This operator clears bits in the first operand based on the corresponding bits in the second operand.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *