Jump to content

operations like m<<=n and m^=n ?

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
1 reply to this topic

#1
zhok

zhok

    Newbie

  • Members
  • Pip
  • 9 posts
How can I find an explanation for operations like m<<=n and m^=n?
I can't even search on google for <<= or ^=

Thanks for helping

#2
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Google "C++ operators". The operators are bitwise operators. <<= is left-shift assignment, ^= is bitwise xor assignment.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog